/* ============================================================================
   AlignmentStick Marketing Site Styles
   Based on Design System: Deep charcoal, dark green, cream, burnt orange
   ============================================================================ */

/* ============================================================================
   Responsive Component System - Different components for each screen size
   ============================================================================ */

/* Component Visibility Controls */
/* Hide ALL duplicate components - we'll use single responsive components */
.desktop-large-only,
.desktop-only,
.tablet-only,
.mobile-only,
.mobile-small-only {
    display: none !important;
}

/* Show base components (without screen-size classes) */
.flow-visual:not(.desktop-large-only):not(.desktop-only):not(.tablet-only):not(.mobile-only):not(.mobile-small-only),
.pricing-toggle-container:not(.desktop-large-only):not(.desktop-only):not(.tablet-only):not(.mobile-only):not(.mobile-small-only),
.pricing-cards:not(.desktop-large-only):not(.desktop-only):not(.tablet-only):not(.mobile-only):not(.mobile-small-only) {
    display: block !important;
}

.pricing-cards.grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
}

.pricing-toggle-container {
    display: flex !important;
}

/* Desktop Large (1201px and above) */
@media (min-width: 1201px) {
    .desktop-large-only {
        display: block !important;
    }
    
    .desktop-large-only.flex,
    .desktop-large-only.inline-flex,
    .desktop-large-only.grid {
        display: flex !important;
    }
    
    .desktop-large-only.grid {
        display: grid !important;
    }
    
    .desktop-large-only.inline-flex {
        display: inline-flex !important;
    }
}

/* Desktop (993px - 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
    .desktop-only {
        display: block !important;
    }
    
    .desktop-only.flex,
    .desktop-only.grid {
        display: flex !important;
    }
    
    .desktop-only.grid {
        display: grid !important;
    }
}

/* Tablet (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .tablet-only {
        display: block !important;
    }
    
    .tablet-only.flex,
    .tablet-only.grid {
        display: flex !important;
    }
    
    .tablet-only.grid {
        display: grid !important;
    }
}

/* Mobile (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }
    
    .mobile-only.flex,
    .mobile-only.grid {
        display: flex !important;
    }
    
    .mobile-only.grid {
        display: grid !important;
    }
}

/* Mobile Small (480px and below) */
@media (max-width: 480px) {
    .mobile-small-only {
        display: block !important;
    }
    
    .mobile-small-only.flex,
    .mobile-small-only.grid {
        display: flex !important;
    }
    
    .mobile-small-only.grid {
        display: grid !important;
    }
}

/* Ensure only one component shows at a time - hide others explicitly */
@media (min-width: 1201px) {
    .desktop-only,
    .tablet-only,
    .mobile-only,
    .mobile-small-only {
        display: none !important;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .desktop-large-only,
    .tablet-only,
    .mobile-only,
    .mobile-small-only {
        display: none !important;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .desktop-large-only,
    .desktop-only,
    .mobile-only,
    .mobile-small-only {
        display: none !important;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .desktop-large-only,
    .desktop-only,
    .tablet-only,
    .mobile-small-only {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .desktop-large-only,
    .desktop-only,
    .tablet-only,
    .mobile-only {
        display: none !important;
    }
}

:root {
    /* Design System Colors - Apple-like with Golf Course Elegance */
    --color-charcoal: #1D1D1F;
    --color-green: #2D5016;
    --color-green-light: #4A7C2A;
    --color-green-soft: #E8F5E9;
    --color-cream: #FBFBFD;
    --color-orange: #BF5F00;
    --color-white: #FFFFFF;
    
    /* Status Colors */
    --color-blue: #0071E3;
    --color-green-status: #34C759;
    --color-yellow: #FF9500;
    --color-red: #FF3B30;
    
    /* Typography - Apple-like */
    --font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', 'Helvetica Neue', sans-serif;
    --font-size-base: 17px;
    --line-height-base: 1.47059;
    --letter-spacing: -0.022em;
    
    /* Spacing - Professional, tighter */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 5rem;
    
    /* Container */
    --container-max-width: 1200px;
    --container-padding: 2rem;
    
    /* Shadows - Subtle, elegant */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-charcoal);
    background-color: var(--color-white);
    letter-spacing: var(--letter-spacing);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Section Dividers - More subtle, Apple-like */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 0, 0, 0.08) 20%, 
        rgba(0, 0, 0, 0.08) 80%, 
        transparent 100%);
    margin: var(--spacing-xl) 0;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 1px;
    background-color: var(--color-green);
    opacity: 0.2;
}

/* Navigation - Apple-like, clean and minimal */
.navbar {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: none;
    padding: 1rem 0;
}

.navbar-brand {
    color: var(--color-green) !important;
    font-weight: 600;
    font-size: 1.375rem;
    letter-spacing: -0.01em;
}

.navbar-nav .nav-link {
    color: var(--color-charcoal) !important;
    font-weight: 400;
    font-size: 0.9375rem;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
}

.navbar-nav .nav-link:hover {
    color: var(--color-green) !important;
}

.navbar-nav .nav-link.btn {
    color: var(--color-white) !important;
}

.navbar-nav .nav-link.btn:hover {
    color: var(--color-white) !important;
}

/* Demo Button in Navbar */
.nav-demo-btn {
    margin-left: 1rem;
    padding: 0.5rem 1.5rem !important;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 8px;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .nav-demo-btn {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
    }
}

/* Hero Section - Professional and focused */
.hero {
    background: linear-gradient(135deg, #1a3d0f 0%, var(--color-green) 50%, #2D5016 100%);
    color: var(--color-white);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}


.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.01em;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-byline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero .btn-primary,
.hero .btn-secondary {
    color: var(--color-white) !important;
}

.hero .btn-primary:hover,
.hero .btn-secondary:hover {
    color: var(--color-white) !important;
}

/* Buttons - Apple-like, refined */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.0625rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.btn-primary {
    background-color: var(--color-green-light);
    color: var(--color-white) !important;
    box-shadow: 0 4px 14px rgba(74, 124, 42, 0.25);
}

.btn-primary:hover {
    background-color: #3D6A24;
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 42, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: var(--color-white) !important;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.btn-secondary:active {
    transform: translateY(0);
}

/* Section Styles */
section {
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features {
    background-color: var(--color-white);
}

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

.feature-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45, 80, 22, 0.2);
}

.feature-icon {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-green);
    margin-bottom: var(--spacing-md);
    padding: 0.5rem 0;
    border-bottom: 2px solid #E5E7EB;
    display: inline-block;
    width: 100%;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-charcoal);
}

.feature-card p {
    color: #6B7280;
    line-height: 1.6;
}

/* Mission Statement - More spacious */
.mission {
    background-color: var(--color-white);
    padding: var(--spacing-2xl) 0;
}

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

.mission-statement {
    margin-top: var(--spacing-xl);
}

.mission-text {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-charcoal);
    line-height: 1.47059;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

.mission-description {
    font-size: 1.1875rem;
    color: #86868B;
    line-height: 1.64706;
    letter-spacing: -0.01em;
}

/* Command Center - Clean background */
.command-center {
    background-color: var(--color-white);
    padding: var(--spacing-2xl) 0;
}

.command-center-content {
    max-width: 1000px;
    margin: 0 auto;
}

.command-intro {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.command-lead {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: var(--spacing-md);
}

.command-intro p {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.8;
}

.command-examples {
    margin-bottom: var(--spacing-2xl);
}

.command-examples h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-charcoal);
    text-align: center;
}

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

.example-card {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.example-card:hover {
    border-color: rgba(45, 80, 22, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.example-command {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #F3F4F6;
}

.command-prompt {
    color: var(--color-green);
    font-weight: 600;
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.command-text {
    color: var(--color-charcoal);
    font-size: 1rem;
    font-style: italic;
}

.example-response {
    font-size: 0.9375rem;
    color: #4B5563;
    line-height: 1.7;
}

.example-response strong {
    color: var(--color-green);
    font-weight: 600;
    margin-right: 0.5rem;
}

.command-features {
    margin-bottom: var(--spacing-2xl);
}

.command-features h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-charcoal);
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-item {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 18px;
    border-left: 3px solid var(--color-green);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--color-green-light);
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-charcoal);
}

.feature-item p {
    color: #6B7280;
    line-height: 1.6;
}

.command-benefits {
    background: linear-gradient(135deg, var(--color-green-soft) 0%, rgba(232, 245, 233, 0.5) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(45, 80, 22, 0.1);
    box-shadow: var(--shadow-sm);
}

.command-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-charcoal);
}

.command-benefits p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
}

/* Use Cases */
.use-cases {
    background-color: var(--color-white);
}

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

.use-case-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45, 80, 22, 0.2);
}

.use-case-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-charcoal);
}

.use-case-scenario {
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: var(--spacing-md);
    font-style: italic;
    padding: var(--spacing-md);
    background-color: #F9FAFB;
    border-left: 3px solid var(--color-green);
    border-radius: 0.375rem;
}

.use-case-solution {
    margin-top: var(--spacing-md);
}

.use-case-solution strong {
    display: block;
    margin-bottom: var(--spacing-sm);
    color: var(--color-charcoal);
    font-size: 1.125rem;
}

.use-case-solution ul {
    list-style: none;
    padding-left: 0;
    margin-top: var(--spacing-sm);
}

.use-case-solution li {
    padding: var(--spacing-xs) 0;
    color: #374151;
    padding-left: 1.5rem;
    position: relative;
}

.use-case-solution li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: 700;
}

/* About */
.about {
    background-color: var(--color-white);
}

.about-card {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45, 80, 22, 0.2);
}

/* Coming Soon */
.coming-soon {
    background-color: var(--color-white);
}

.coming-soon-card {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.coming-soon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(45, 80, 22, 0.2);
}

.coming-soon-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 0.75rem;
}

.coming-soon-card p {
    font-size: 0.9375rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.about-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
}

.about-card p {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-feature {
    padding: 1.5rem 0;
    border-bottom: 2px solid #F3F4F6;
}

.about-feature:last-child {
    border-bottom: none;
}

.about-feature h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-charcoal);
}

.about-feature p {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 0;
}

.about-target {
    background: linear-gradient(135deg, var(--color-green-soft) 0%, rgba(232, 245, 233, 0.5) 100%);
    border: 1px solid rgba(45, 80, 22, 0.1);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.about-target h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-charcoal);
}

.about-target p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Pricing - Clean, professional */
.pricing {
    background-color: #FAFBFC;
    padding: 5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Pricing Cards - Professional */
.pricing-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: left;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45, 80, 22, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--color-green);
    box-shadow: var(--shadow-md);
    background: linear-gradient(to bottom, var(--color-white), rgba(232, 245, 233, 0.3));
    position: relative !important;
    overflow: visible !important;
    padding-top: 3rem !important;
    text-align: center !important;
}

/* Ensure featured card container allows badge overflow */
.pricing-cards {
    overflow: visible !important;
    position: relative !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
}

.pricing-cards > .pricing-card.featured {
    overflow: visible !important;
    position: relative !important;
    text-align: center !important;
}

.pricing-cards > .pricing-card.featured > * {
    text-align: left;
}

.pricing-cards > .pricing-card.featured .featured-badge {
    text-align: center !important;
}

.pricing-card.featured:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.featured-badge {
    position: absolute !important;
    top: -14px !important;
    left: 50% !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: translate(-50%, 0) !important;
    -webkit-transform: translate(-50%, 0) !important;
    background-color: var(--color-green) !important;
    color: var(--color-white) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 9999px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    z-index: 10 !important;
    display: block !important;
    width: auto !important;
    margin: 0 !important;
    box-shadow: 0 2px 6px rgba(45, 80, 22, 0.25) !important;
    letter-spacing: 0.01em !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

/* Ensure parent card allows badge to be centered */
.pricing-card.featured {
    text-align: center;
}

.pricing-card.featured .featured-badge {
    left: 50% !important;
    transform: translate(-50%, 0) !important;
    -webkit-transform: translate(-50%, 0) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.pricing-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
}

.pricing-description {
    color: #4B5563;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #E5E7EB;
}

.pricing-features {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.625rem 0;
    color: #374151;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #F3F4F6;
    font-size: 0.9375rem;
    line-height: 1.5;
}

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

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: 600;
    font-size: 1rem;
}

.pricing-subscribe-btn {
    width: 100%;
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-subscribe-btn:hover {
    text-decoration: none;
}

.pricing-subscribe-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.pricing-note {
    text-align: center;
    margin-top: 2.5rem;
    color: #6B7280;
    font-size: 0.9375rem;
}

.pricing-note p {
    margin: 0.5rem 0;
}

/* Pricing Toggle */
.pricing-toggle-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 2rem;
    padding: 0 1rem;
    width: 100% !important;
    text-align: center !important;
}

/* Ensure only one toggle container shows at a time */
.pricing-toggle-container.desktop-large-only:not(.desktop-large-only) {
    display: none !important;
}

.pricing-toggle-container.desktop-only:not(.desktop-only) {
    display: none !important;
}

.pricing-toggle-container.tablet-only:not(.tablet-only) {
    display: none !important;
}

.pricing-toggle-container.mobile-only:not(.mobile-only) {
    display: none !important;
}

.pricing-toggle-container.mobile-small-only:not(.mobile-small-only) {
    display: none !important;
}

/* Pricing Toggle - Desktop Large & Desktop */
.pricing-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem;
    background-color: var(--color-white);
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-wrap: nowrap;
    margin-left: auto !important;
    margin-right: auto !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    -webkit-transform: none !important;
    width: auto !important;
}

/* Pricing Toggle - Tablet */
.pricing-toggle-tablet {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.875rem;
    background-color: var(--color-white);
    padding: 0.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-wrap: nowrap;
    margin: 0 auto;
}

/* Pricing Toggle - Mobile */
.pricing-toggle-mobile {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem;
    background-color: var(--color-white);
    padding: 0.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-wrap: nowrap;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}

/* Pricing Toggle - Mobile Small */
.pricing-toggle-mobile-small {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.625rem;
    background-color: var(--color-white);
    padding: 0.4375rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-wrap: nowrap;
    margin: 0 auto;
    width: 100%;
}

.toggle-label-mobile-small {
    font-size: 0.8125rem;
    color: #86868B;
    font-weight: 400;
    white-space: nowrap;
    padding: 0.375rem 0.625rem;
}

.toggle-savings-mobile-small {
    display: block;
    font-size: 0.625rem;
    color: var(--color-green);
    font-weight: 600;
    margin-top: 0.125rem;
}

.toggle-label {
    font-size: 0.9375rem;
    color: #86868B;
    font-weight: 400;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 8px;
    user-select: none;
}

.toggle-label:first-child {
    color: #86868B;
}

.toggle-switch {
    order: 0;
}

.toggle-label:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
    color: var(--color-charcoal);
}

.toggle-savings {
    display: block;
    font-size: 0.6875rem;
    color: var(--color-green);
    font-weight: 600;
    margin-top: 0.125rem;
    line-height: 1.2;
}

/* Active state styling */
.pricing-toggle input:checked ~ .toggle-label:last-child,
.pricing-toggle input:not(:checked) ~ .toggle-label:first-child {
    color: var(--color-charcoal);
    font-weight: 500;
}

.pricing-toggle input:checked ~ .toggle-label:first-child,
.pricing-toggle input:not(:checked) ~ .toggle-label:last-child {
    color: #86868B;
    font-weight: 400;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 32px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #D1D5DB;
    transition: 0.3s;
    border-radius: 32px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: var(--color-white);
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--color-green);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
    -webkit-transform: translateX(24px);
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-green);
}

.price-period {
    font-size: 1.25rem;
    color: #6B7280;
    font-weight: 400;
    margin-left: 0.25rem;
}


/* CTA Section - Professional */
.cta {
    background: linear-gradient(135deg, #1a3d0f 0%, var(--color-green) 50%, #2D5016 100%);
    color: var(--color-white);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta .btn-primary,
.cta .btn-secondary {
    color: var(--color-white) !important;
}

.cta .btn-primary:hover,
.cta .btn-secondary:hover {
    color: var(--color-white) !important;
}

.pricing-cta .cta-content {
    text-align: left;
    max-width: 900px;
}

.cta-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.pricing-cta .cta-content h2 {
    text-align: left;
    font-size: 2.5rem;
}

.pricing-cta .cta-content p {
    text-align: left;
}

.cta-points {
    margin: 1.5rem 0 2.5rem;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    display: grid;
    gap: 0.6rem;
}

.cta-points li {
    line-height: 1.5;
}

.cta-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cta-action-card {
    background: rgba(8, 20, 8, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-action-card.highlight {
    background: rgba(5, 10, 5, 0.75);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-action-label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.cta-action-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.cta-action-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
}

.cta-action-button {
    align-self: flex-start;
    padding: 0.9rem 1.75rem;
}

.cta-support-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-support-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    width: fit-content;
}

.cta-footnote {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.cta-footnote a {
    color: var(--color-white);
    font-weight: 600;
    text-decoration: underline;
}

/* Footer - Clean & Readable */
.footer {
    background-color: #F9FAFB;
    border-top: 1px solid #E5E7EB;
    padding: 3rem 0 2rem;
    margin-top: 0;
}

.footer-main,
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.footer-email-link {
    margin-top: 1rem;
}

.footer-email-link a {
    color: var(--color-green);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-email-link a:hover {
    color: var(--color-green-light);
    text-decoration: underline;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #6B7280;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
    display: inline-block;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
    text-align: center;
    color: #9CA3AF;
    font-size: 0.875rem;
}

@media (max-width: 992px) {
    .footer-main,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-main,
    .footer-content {
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column h4 {
        margin-bottom: 0.75rem;
    }
}

/* Scroll Indicator - Removed for cleaner look */

/* Hero Background Animation */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a3d0f 0%, var(--color-green) 50%, #2D5016 100%);
    opacity: 0.95;
}

/* Product Summary */
.product-summary {
    padding: 5rem 0;
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-block {
    text-align: left;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--color-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-block:hover {
    transform: translateY(-2px);
    border-color: var(--color-green);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    display: none;
}

.feature-block h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-charcoal);
    letter-spacing: -0.02em;
}

.feature-block p {
    font-size: 0.9375rem;
    color: #6B7280;
    line-height: 1.6;
    letter-spacing: -0.01em;
    margin: 0;
}

/* Flow Section */
.flow-section {
    padding: 5rem 0;
    background: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.flow-container {
    margin-top: 3rem;
}

.flow-step {
    margin-bottom: 6rem;
    padding: 0;
    opacity: 1 !important;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: visible !important;
}

.flow-step:last-child {
    margin-bottom: 0;
}

.flow-step.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.flow-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    overflow: visible !important;
}

.flow-content .flow-visual {
    overflow: visible !important;
    min-width: 0 !important;
}

.flow-text {
    padding: 0;
}

.step-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-green);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.flow-text h3 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--color-charcoal);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.flow-text p {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

@media (max-width: 992px) {
    .flow-text h3 {
        font-size: 1.875rem;
    }
    
    .flow-text p {
        font-size: 1.0625rem;
    }
}

@media (max-width: 768px) {
    .flow-text h3 {
        font-size: 1.625rem;
    }
    
    .flow-text p {
        font-size: 1rem;
    }
}

.flow-example {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--color-green-soft) 0%, rgba(232, 245, 233, 0.6) 100%);
    border-radius: 12px;
    border: 1px solid rgba(45, 80, 22, 0.12);
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.08);
}

.example-command {
    margin-bottom: var(--spacing-sm);
}

.command-prompt {
    color: var(--color-green);
    font-weight: 600;
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.command-text {
    color: var(--color-charcoal);
    font-size: 1rem;
    font-style: italic;
}

.example-response {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.7;
}

.example-response strong {
    color: var(--color-green);
    font-weight: 600;
}

.flow-benefits {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.flow-benefits li {
    padding: 0.75rem 0;
    color: #374151;
    font-size: 1rem;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.6;
}

.flow-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: 600;
    font-size: 1.125rem;
}

/* App Mockups */
.flow-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: visible !important;
    min-width: 0 !important;
}

.flow-visual .mobile-mockup {
    position: relative !important;
    z-index: 1 !important;
}

.app-mockup {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: visible;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    max-width: 100%;
}

.app-mockup.mobile-mockup {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    width: auto !important;
    max-width: none !important;
}

.app-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 16px;
}

.flow-step.active .app-mockup {
    transform: translateY(0);
}

.flow-step.active .app-mockup::before {
    opacity: 1;
}

.flow-step.active .app-mockup:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18), 0 6px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mockup-header {
    background: #F9FAFB;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.mockup-logo {
    font-weight: 600;
    color: var(--color-charcoal);
    font-size: 0.9375rem;
}

.mockup-search {
    font-size: 1.25rem;
}

/* Omnibar Mockup */
.omnibar-mockup {
    padding: 2.5rem;
}

@media (max-width: 768px) {
    .omnibar-mockup {
        padding: 1.5rem;
    }
}

.mockup-omnibar {
    margin-top: 1rem;
}

.omnibar-input {
    background: #F9FAFB;
    border: 2px solid var(--color-green);
    border-radius: 12px;
    padding: 1rem;
    font-size: 1rem;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.omnibar-text {
    flex: 1;
}

.omnibar-cursor {
    color: var(--color-green);
    opacity: 0.6;
}

.omnibar-preview {
    background: var(--color-green-soft);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.preview-item {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: #374151;
}

.preview-item strong {
    color: var(--color-green);
    margin-right: 0.5rem;
}

/* Schedule Mockup */
.schedule-mockup {
    padding: 2rem;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 600px !important;
    margin: 0;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

@media (min-width: 1201px) {
    .schedule-mockup {
        min-width: 700px !important;
    }
}

@media (max-width: 768px) {
    .schedule-mockup {
        padding: 1.5rem;
    }
}

.mockup-calendar {
    margin-top: 1rem;
    background: var(--color-white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    width: 100% !important;
    max-width: 100% !important;
    min-width: 500px !important;
    overflow: visible;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 1201px) {
    .mockup-calendar {
        min-width: 600px !important;
    }
}

.mockup-calendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #F3F4F6;
}

.calendar-month {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.calendar-year {
    font-size: 0.875rem;
    color: #6B7280;
    margin-left: 0.5rem;
}

.calendar-nav {
    display: flex;
    gap: 0.5rem;
}

.calendar-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    background: var(--color-white);
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.calendar-nav-btn:hover {
    background: #F9FAFB;
    border-color: var(--color-green);
    color: var(--color-green);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.calendar-weekday {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calendar-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.calendar-day {
    min-height: 120px;
    min-width: 0;
    width: 100%;
    padding: 0.75rem;
    background: #FAFBFC;
    border-radius: 8px;
    border: 1px solid #F3F4F6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-sizing: border-box;
}

.calendar-day:hover {
    background: #F9FAFB;
    border-color: #E5E7EB;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.calendar-day.has-shift {
    background: #F0F9F4;
    border-color: rgba(45, 80, 22, 0.15);
}

.day-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    text-align: center;
}

.day-number {
    font-size: 1rem;
    color: #6B7280;
    text-align: center;
    margin-bottom: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.calendar-day.has-shift .day-number {
    color: var(--color-charcoal);
    font-weight: 600;
}

.shift-block {
    background: linear-gradient(135deg, var(--color-green) 0%, #2D5016 100%);
    color: var(--color-white);
    padding: 0.875rem;
    border-radius: 6px;
    font-size: 0.875rem;
    box-shadow: 0 2px 4px rgba(45, 80, 22, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: normal;
    word-wrap: break-word;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: shiftAppear 0.4s ease-out;
}

@keyframes shiftAppear {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.calendar-day.has-shift:hover .shift-block {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(45, 80, 22, 0.3);
}

.shift-name {
    font-weight: 600;
    margin-bottom: 0.375rem;
    font-size: 0.9375rem;
    line-height: 1.3;
}

.shift-time {
    font-size: 0.8125rem;
    opacity: 0.95;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.shift-location {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 0.25rem;
    font-weight: 500;
    line-height: 1.3;
}

/* Mobile Calendar (List View) */
.calendar-mobile {
    display: none;
}

.calendar-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.calendar-list-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #FAFBFC;
    border-radius: 8px;
    border: 1px solid #F3F4F6;
    transition: all 0.2s ease;
}

.calendar-list-item:hover {
    background: #F9FAFB;
    border-color: #E5E7EB;
    transform: translateX(4px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.calendar-list-item.empty {
    opacity: 0.6;
}

.list-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 0.5rem;
    background: var(--color-white);
    border-radius: 6px;
    border: 1px solid #E5E7EB;
}

.list-day-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.list-day-number {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.calendar-list-item.has-shift .list-date {
    background: var(--color-green-soft);
    border-color: rgba(45, 80, 22, 0.2);
}

.list-shifts {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.list-shift {
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--color-green) 0%, #2D5016 100%);
    color: var(--color-white);
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.list-shift:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.3);
}

.list-shift-name {
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.list-shift-time {
    font-size: 0.875rem;
    opacity: 0.95;
    margin-bottom: 0.25rem;
}

.list-shift-location {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
}

.list-shift-empty {
    color: #9CA3AF;
    font-size: 0.875rem;
    font-style: italic;
    padding: 0.75rem;
}

/* Responsive Calendar Display */
/* Desktop calendar shows on desktop large only */
.calendar-desktop.desktop-large-only {
    display: block !important;
}

.calendar-desktop:not(.desktop-large-only) {
        display: none !important;
    }
    
/* Mobile calendar shows on desktop, tablet, mobile, mobile-small */
.calendar-mobile.mobile-only,
.calendar-mobile.tablet-only,
.calendar-mobile.desktop-only,
.calendar-mobile.mobile-small-only {
        display: block !important;
        padding: 1.5rem;
    }

.calendar-mobile:not(.mobile-only):not(.tablet-only):not(.desktop-only):not(.mobile-small-only) {
    display: none !important;
    }
    
/* Mobile Mockup - Responsive sizing for different screen sizes */
.mobile-mockup {
    width: 320px !important;
    max-width: 320px !important;
    min-width: 320px !important;
    margin: 0 auto !important;
    background: #000 !important;
    border-radius: 32px !important;
    padding: 0.625rem !important;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25), 0 8px 16px rgba(0, 0, 0, 0.15) !important;
    flex-shrink: 0 !important;
    position: relative !important;
    box-sizing: border-box !important;
}

/* Desktop Large: Larger phone mockup */
@media (min-width: 1201px) {
.mobile-mockup {
        width: 360px !important;
        max-width: 360px !important;
        min-width: 360px !important;
    }
}

/* Desktop: Medium phone mockup */
@media (min-width: 993px) and (max-width: 1200px) {
    .mobile-mockup {
        width: 340px !important;
        max-width: 340px !important;
        min-width: 340px !important;
    }
}

/* Tablet: Smaller phone mockup */
@media (min-width: 769px) and (max-width: 992px) {
    .mobile-mockup {
        width: 320px !important;
        max-width: 320px !important;
        min-width: 320px !important;
    }
}

.mobile-screen {
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    min-height: 600px;
    width: 100%;
}

.mobile-header {
    background: #000;
    color: var(--color-white);
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.mobile-status {
    display: flex;
    gap: 0.25rem;
    font-size: 0.625rem;
}

.mobile-content {
    padding: 1rem;
}

.notification-card {
    background: var(--color-green-soft);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.notification-icon {
    display: none;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
}

.notification-text {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 0.25rem;
}

.notification-location {
    font-size: 0.75rem;
    color: var(--color-green);
    font-weight: 500;
}

.mobile-shift-card {
    background: var(--color-white);
    border: 2px solid var(--color-green);
    border-radius: 12px;
    padding: 1.5rem;
}

.shift-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6B7280;
}

.shift-day {
    font-weight: 600;
    color: var(--color-charcoal);
}

.shift-details {
    text-align: center;
}

.shift-time-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.shift-location-large {
    font-size: 1rem;
    color: var(--color-green);
    font-weight: 500;
}

/* Tasks Mockup */
.tasks-mockup {
    padding: 2rem;
}

@media (max-width: 768px) {
    .tasks-mockup {
        padding: 1.5rem;
    }
}

.mockup-tasks {
    margin-top: 1rem;
}

.task-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.task-item:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: rgba(45, 80, 22, 0.2);
}

.task-checkbox {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--color-green);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.task-item:hover .task-checkbox {
    transform: scale(1.1);
    box-shadow: 0 2px 4px rgba(45, 80, 22, 0.3);
}

.task-content {
    flex: 1;
}

.task-title {
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
}

.task-assignee {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 0.5rem;
}

.task-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.task-status.completed {
    background: var(--color-green-soft);
    color: var(--color-green);
}

.task-status.pending {
    background: #FEF3C7;
    color: #D97706;
}

/* Trades Mockup */
.trades-mockup {
    padding: 2rem;
}

@media (max-width: 768px) {
    .trades-mockup {
        padding: 1.5rem;
    }
}

/* Announcement Mockup */
.announcement-mockup {
    padding: 2rem;
}

.mockup-announcement {
    margin-top: 1rem;
}

.announcement-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    padding: 1rem;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: var(--color-charcoal);
    min-height: 80px;
    line-height: 1.5;
}

.target-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-green-soft);
    color: var(--color-green);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
}

.form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.form-btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.form-btn:active {
    transform: translateY(0);
}

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

.form-btn.primary:hover {
    background: var(--color-green-light);
}

.form-btn.secondary {
    background: #F3F4F6;
    color: var(--color-charcoal);
}

.form-btn.secondary:hover {
    background: #E5E7EB;
}

@media (max-width: 768px) {
    .announcement-mockup {
        padding: 1.5rem;
    }
}

/* Mobile Announcement Feed */
.mobile-announcement-feed {
    padding: 0;
}

.announcement-item {
    padding: 1rem;
    background: var(--color-white);
    border-bottom: 1px solid #F3F4F6;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-item:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.announcement-item.unread {
    background: var(--color-green-soft);
    border-left: 3px solid var(--color-green);
}

.announcement-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.announcement-icon {
    display: none;
}

.announcement-title {
    flex: 1;
    font-weight: 600;
    color: var(--color-charcoal);
    font-size: 0.9375rem;
}

.unread-badge {
    background: var(--color-green);
    color: var(--color-white);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.announcement-message {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.announcement-meta {
    font-size: 0.75rem;
    color: #6B7280;
}

.announcement-item.read {
    opacity: 0.8;
}

/* Event Mockup */
.event-mockup {
    padding: 2rem;
}

.mockup-event {
    margin-top: 1rem;
}

.event-card {
    background: var(--color-white);
    border: 2px solid var(--color-green);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(45, 80, 22, 0.15);
}

.event-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #F3F4F6;
}

.event-icon {
    display: none;
}

.event-info {
    flex: 1;
}

.event-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.25rem;
}

.event-date {
    font-size: 0.9375rem;
    color: #6B7280;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.event-detail {
    font-size: 0.9375rem;
    color: #374151;
}

.event-detail strong {
    color: var(--color-charcoal);
    margin-right: 0.5rem;
}

.event-shifts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #F3F4F6;
}

.event-shift-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #F9FAFB;
    border-radius: 8px;
}

.shift-role {
    font-weight: 600;
    color: var(--color-charcoal);
    font-size: 0.9375rem;
}

.shift-count {
    font-size: 0.875rem;
    color: var(--color-green);
    font-weight: 600;
}

@media (max-width: 768px) {
    .event-mockup {
        padding: 1.5rem;
    }
}

.mockup-trades {
    margin-top: 1rem;
}

.trade-request {
    background: var(--color-white);
    border: 2px solid var(--color-green);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trade-request:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.15);
}

.trade-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.trade-icon {
    display: none;
}

.trade-title {
    font-weight: 600;
    color: var(--color-charcoal);
    font-size: 1.0625rem;
}

.trade-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 8px;
}

.trade-from,
.trade-to {
    flex: 1;
    font-size: 0.9375rem;
}

.trade-from strong,
.trade-to strong {
    color: var(--color-charcoal);
    display: block;
    margin-bottom: 0.25rem;
}

.trade-shift {
    font-size: 0.875rem;
    color: #6B7280;
}

.trade-arrow {
    font-size: 1.5rem;
    color: var(--color-green);
}

.trade-actions {
    display: flex;
    gap: 0.75rem;
}

.trade-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trade-btn:hover {
    transform: translateY(-2px);
}

.trade-btn:active {
    transform: translateY(0);
}

.trade-btn.approve {
    background: var(--color-green);
    color: var(--color-white);
}

.trade-btn.reject {
    background: #F3F4F6;
    color: var(--color-charcoal);
}

.trade-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Pricing Cards Grid - Side by side on desktop/tablet, stacked on mobile only */
.pricing-cards {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
    max-width: 1200px;
    margin: 3rem auto !important;
    position: relative !important;
    overflow: visible !important;
    width: 100%;
}

/* Ensure pricing cards stay side by side on large screens (desktop and tablet) */
@media (min-width: 769px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        display: grid !important;
        gap: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* Ensure featured card container allows badge overflow */
.pricing-cards > .pricing-card.featured {
    margin-top: 0;
    padding-top: 2.5rem !important;
    position: relative !important;
    overflow: visible !important;
    text-align: center !important;
}

.pricing-cards > .pricing-card.featured > * {
    text-align: left;
}

.pricing-cards > .pricing-card.featured .featured-badge {
    text-align: center !important;
    left: 50% !important;
    transform: translate(-50%, 0) !important;
    -webkit-transform: translate(-50%, 0) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Coming Soon */
.coming-soon {
    padding: 5rem 0;
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.coming-soon-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-card {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.coming-soon-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-green);
}

.card-icon {
    display: none;
}

.coming-soon-card h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.coming-soon-card p {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

/* Animation Classes - Disabled, elements visible by default */
[data-animate] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* All elements visible by default - animations disabled */
.flow-step,
.flow-step *,
[data-animate],
[data-animate] * {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Responsive Design - All content visible on all screen sizes */
@media (max-width: 992px) {
    /* Container padding for tablets */
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
        max-width: 100% !important;
    }
    
    .pricing-card {
        min-width: 0;
    }
    
    .pricing-card.featured {
        padding-top: 2.5rem;
    }
    
    .featured-badge {
        top: -14px;
    }
    
    /* Ensure all columns are visible */
    .row > [class*='col-'] {
        display: block;
        width: 100%;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 992px) {
    .flow-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .flow-text {
        order: 1;
    }
    
    .flow-visual {
        order: 2;
    }
    
    .flow-text h3 {
        font-size: 1.75rem;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
        max-width: 100% !important;
    }
    
    .product-features {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Mobile calendar shows on tablets and smaller */
    .calendar-desktop {
        display: none !important;
    }
    
    .calendar-mobile {
        display: block !important;
    }
}

@media (max-width: 768px) {
    /* Container padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Navigation */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
        font-size: 0.9375rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 3rem 0 2.5rem;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.0625rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-byline {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .section-title {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    /* Product Summary */
    .product-summary {
        padding: 3rem 0;
    }
    
    .product-features {
        gap: 1.25rem;
    }
    
    .feature-block {
        padding: 1.5rem;
    }
    
    .feature-block h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-block p {
        font-size: 0.9375rem;
    }
    
    /* Flow Section */
    .flow-section {
        padding: 4rem 0;
    }
    
    .flow-step {
        margin-bottom: 5rem;
    }
    
    .flow-text {
        padding: 0 0.5rem;
    }
    
    .flow-text h3 {
        font-size: 1.625rem;
        margin-bottom: 1rem;
    }
    
    .flow-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .flow-benefits {
        margin-top: 1rem;
    }
    
    .flow-benefits li {
        font-size: 0.9375rem;
        padding: 0.5rem 0;
    }
    
    .flow-example {
        padding: 1.25rem;
        margin-top: 1rem;
    }
    
    .step-number {
        font-size: 0.6875rem;
        padding: 0.375rem 0.75rem;
        margin-bottom: 1rem;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.375rem;
    }
    
    /* Use Cases */
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .use-case-card {
        padding: 2rem 1.5rem;
    }
    
    /* Command Center Section */
    .command-center {
        padding: 3rem 0;
    }
    
    .command-intro {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .command-lead {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .command-intro p {
        font-size: 1rem;
    }
    
    .example-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .example-card {
        padding: 1.5rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .command-benefits {
        padding: 2rem 1.5rem;
    }
    
    /* Pricing */
    .pricing {
        padding: 3rem 0;
    }
    
    .pricing-cards {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
        margin-top: 2rem;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        margin-bottom: 0;
        min-width: 0;
    }
    
    .pricing-card.featured {
        margin-top: 0.5rem;
        padding-top: 2.5rem;
        position: relative;
        overflow: visible !important;
    }
    
    .featured-badge {
        top: -14px !important;
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, 0) !important;
        -webkit-transform: translate(-50%, 0) !important;
        padding: 0.5rem 1.125rem !important;
        font-size: 0.8125rem !important;
        position: absolute !important;
        z-index: 10 !important;
        margin: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center !important;
        width: auto !important;
    }
    
    .pricing-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .price {
        font-size: 2rem;
        margin-bottom: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .price-period {
        font-size: 1.125rem;
    }
    
    .pricing-description {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }
    
    .pricing-features {
        margin-bottom: 1.5rem;
    }
    
    .pricing-features li {
        padding: 0.5rem 0;
        font-size: 0.9375rem;
    }
    
    .pricing-subscribe-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .pricing-toggle {
        flex-direction: row;
        gap: 0.75rem;
        padding: 0.5rem;
        flex-wrap: nowrap;
        width: auto;
        max-width: 100%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
    }
    
    .toggle-label {
        text-align: center;
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }
    
    .toggle-switch {
        width: 52px;
        height: 30px;
        flex-shrink: 0;
    }
    
    .toggle-slider:before {
        height: 22px;
        width: 22px;
    }
    
    .toggle-switch input:checked + .toggle-slider:before {
        transform: translateX(22px);
        -webkit-transform: translateX(22px);
    }
    
    /* Coming Soon */
    .coming-soon {
        padding: 3rem 0;
    }
    
    .coming-soon-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }
    
    .coming-soon-card {
        padding: 1.5rem;
    }
    
    .coming-soon-card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .coming-soon-card p {
        font-size: 0.875rem;
    }
    
    /* CTA Section */
    .cta {
        padding: 3rem 0;
    }
    
    .cta-content {
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }

    .pricing-cta .cta-content {
        text-align: center;
    }

    .pricing-cta .cta-content h2,
    .pricing-cta .cta-content p {
        text-align: center;
    }

    .cta-points {
        padding-left: 1rem;
        text-align: left;
    }

    .cta-action-grid {
        grid-template-columns: 1fr;
    }

    .cta-action-card {
        padding: 1.5rem;
    }
    
    /* Mission Section */
    .mission {
        padding: 3rem 0;
    }
    
    .mission-content {
        padding: 0 1rem;
    }
    
    .mission-text {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .mission-description {
        font-size: 1.0625rem;
    }
    
    .about-target {
        padding: 2.5rem 1.5rem;
    }
    
    .about-target h3 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .about-target p {
        font-size: 1rem;
    }
    
    /* Mockups */
    .mobile-mockup {
        width: 400px !important;
        max-width: 400px !important;
        min-width: 400px !important;
    }
    
    .mobile-screen {
        min-height: 550px;
    }
    
    .flow-visual {
        display: flex;
        justify-content: center;
        width: 100%;
        overflow: visible;
    }
    
    .app-mockup {
        margin: 0 auto;
    }
    
    .omnibar-mockup,
    .tasks-mockup,
    .trades-mockup,
    .announcement-mockup,
    .event-mockup {
        padding: 1.5rem;
    }
    
    /* Calendar */
    .calendar-week {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .calendar-weekdays {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .mockup-calendar {
        padding: 1rem;
        overflow: visible;
    }
    
    .schedule-mockup {
        padding: 1rem;
        overflow: visible;
    }
    
    .calendar-day {
        min-height: 100px;
        min-width: 0;
        width: 100%;
        padding: 0.75rem;
        box-sizing: border-box;
    }
    
    .calendar-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .calendar-nav {
        align-self: flex-end;
    }
    
    .flow-visual {
        overflow: visible;
        margin-top: 1.5rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-main,
    .footer-content {
        gap: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.375rem;
    }
    
    .footer-tagline {
        font-size: 0.9375rem;
    }
}

/* Mobile-Specific Components */
@media (max-width: 480px) {
    /* Pricing Toggle - Mobile - Removed, using desktop toggle */
    
    .toggle-options {
        display: flex;
        background-color: #F3F4F6;
        border-radius: 12px;
        padding: 0.25rem;
        gap: 0.25rem;
        width: 100%;
    }
    
    .toggle-option {
        flex: 1;
        padding: 0.875rem 1rem;
        border: none;
        background: transparent;
        color: #6B7280;
        font-size: 0.9375rem;
        font-weight: 500;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.2s ease;
        font-family: var(--font-family);
    }
    
    .toggle-option.active {
        background-color: var(--color-white);
        color: var(--color-green);
        font-weight: 600;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .toggle-savings-mobile {
        text-align: center;
        font-size: 0.75rem;
        color: var(--color-green);
        font-weight: 600;
        padding: 0.25rem 0;
    }
    
    /* Pricing Cards - Mobile */
    .pricing-cards-mobile {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        padding: 0;
    }
    
    .pricing-card-mobile {
        background-color: var(--color-white);
        padding: 1.5rem;
        border-radius: 16px;
        box-shadow: var(--shadow-sm);
        border: 1px solid rgba(0, 0, 0, 0.08);
        text-align: left;
        position: relative;
        width: 100%;
        box-sizing: border-box;
    }
    
    .pricing-card-mobile.featured-mobile {
        border: 2px solid var(--color-green);
        box-shadow: var(--shadow-md);
        background: linear-gradient(to bottom, var(--color-white), rgba(232, 245, 233, 0.3));
        padding-top: 2rem;
    }
    
    .featured-badge-mobile {
        position: absolute !important;
        top: -12px !important;
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, 0) !important;
        -webkit-transform: translate(-50%, 0) !important;
        background-color: var(--color-green) !important;
        color: var(--color-white) !important;
        padding: 0.375rem 1rem !important;
        border-radius: 9999px !important;
        font-size: 0.75rem !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        z-index: 10 !important;
        margin: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-shadow: 0 2px 6px rgba(45, 80, 22, 0.25) !important;
        text-align: center !important;
        display: block !important;
        width: auto !important;
    }
    
    .pricing-card-mobile h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        color: var(--color-charcoal);
        font-weight: 600;
    }
    
    .price-mobile {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        margin-bottom: 1rem;
    }
    
    .price-amount-mobile {
        font-size: 2rem;
        font-weight: 700;
        color: var(--color-green);
        line-height: 1;
    }
    
    .price-period-mobile {
        font-size: 0.9375rem;
        color: #6B7280;
        font-weight: 400;
    }
    
    .pricing-description-mobile {
        color: #4B5563;
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    
    .pricing-features-mobile {
        list-style: none;
        text-align: left;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    
    .pricing-features-mobile li {
        padding: 0.5rem 0;
        color: #374151;
        padding-left: 1.5rem;
        position: relative;
        border-bottom: 1px solid #F3F4F6;
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .pricing-features-mobile li:last-child {
        border-bottom: none;
    }
    
    .pricing-features-mobile li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--color-green);
        font-weight: 600;
        font-size: 0.875rem;
    }
    
    .pricing-subscribe-btn-mobile {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        font-weight: 500;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: 12px;
        min-height: 50px;
    }
    
    /* Mobile Phone Mockup - Large version for small screens */
    .mobile-mockup-large {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        margin: 0 auto;
        background: #000;
        border-radius: 24px;
        padding: 0.5rem;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
        flex-shrink: 0;
    }
    
    .mobile-screen-large {
        background: var(--color-white);
        border-radius: 20px;
        overflow: hidden;
        min-height: 500px;
        width: 100%;
    }
    
    .mobile-header-large {
        background: #000;
        color: var(--color-white);
        padding: 0.75rem 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.875rem;
        font-weight: 600;
    }
    
    .mobile-time-large {
        font-weight: 600;
    }
    
    .mobile-status-large {
        display: flex;
        gap: 0.25rem;
        font-size: 0.75rem;
    }
    
    .mobile-content-large {
        padding: 1rem;
    }
    
    .notification-card-large {
        background: var(--color-green-soft);
        border-radius: 12px;
        padding: 1rem;
        margin-bottom: 1rem;
        border: 1px solid rgba(45, 80, 22, 0.1);
    }
    
    .notification-title-large {
        font-weight: 600;
        color: var(--color-charcoal);
        margin-bottom: 0.375rem;
        font-size: 1rem;
    }
    
    .notification-text-large {
        font-size: 0.875rem;
        color: #6B7280;
        margin-bottom: 0.25rem;
    }
    
    .notification-location-large {
        font-size: 0.8125rem;
        color: var(--color-green);
        font-weight: 500;
    }
    
    .mobile-shift-card-large {
        background: var(--color-white);
        border: 2px solid var(--color-green);
        border-radius: 12px;
        padding: 1.5rem;
    }
    
    .shift-header-large {
        display: flex;
        justify-content: space-between;
        margin-bottom: 1rem;
        font-size: 0.875rem;
        color: #6B7280;
    }
    
    .shift-day-large {
        font-weight: 600;
        color: var(--color-charcoal);
    }
    
    .shift-details-large {
        text-align: center;
    }
    
    .shift-time-large-display {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--color-charcoal);
        margin-bottom: 0.5rem;
    }
    
    .shift-location-large-display {
        font-size: 1rem;
        color: var(--color-green);
        font-weight: 500;
    }
    
    /* Mobile Announcement Feed */
    .mobile-announcement-feed-large {
        padding: 0;
    }
    
    .announcement-item-large {
        padding: 1rem;
        background: var(--color-white);
        border-bottom: 1px solid #F3F4F6;
        margin-bottom: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .announcement-item-large.unread-large {
        background: var(--color-green-soft);
        border-left: 3px solid var(--color-green);
    }
    
    .announcement-header-large {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .announcement-title-large {
        flex: 1;
        font-weight: 600;
        color: var(--color-charcoal);
        font-size: 0.9375rem;
    }
    
    .unread-badge-large {
        background: var(--color-green);
        color: var(--color-white);
        padding: 0.25rem 0.5rem;
        border-radius: 12px;
        font-size: 0.75rem;
        font-weight: 600;
    }
    
    .announcement-message-large {
        font-size: 0.875rem;
        color: #374151;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }
    
    .announcement-meta-large {
        font-size: 0.75rem;
        color: #6B7280;
    }
}

@media (max-width: 480px) {
    /* Container padding for small screens */
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* Navigation */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.125rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem !important;
    }
    
    /* Hero Section */
    .hero {
        padding: 2.5rem 0 2rem;
        min-height: 55vh;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.875rem;
        padding: 0;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0.875rem;
        padding: 0 0.25rem;
    }
    
    .hero-byline {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
        padding: 0 0.25rem;
    }
    
    .hero-cta {
        padding: 0 0.5rem;
        gap: 0.625rem;
    }
    
    .hero-cta .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 1.5rem;
        padding: 0 0.25rem;
    }
    
    .section-title {
        font-size: 1.625rem;
        line-height: 1.2;
        margin-bottom: 0.625rem;
    }
    
    .section-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
        padding: 0 0.25rem;
    }
    
    /* Product Summary */
    .product-summary {
        padding: 2.5rem 0;
    }
    
    .product-features {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .feature-block {
        padding: 1.25rem;
    }
    
    .feature-block h3 {
        font-size: 1.0625rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-block p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    /* Flow Section */
    .flow-section {
        padding: 3rem 0;
    }
    
    .flow-step {
        margin-bottom: 4rem;
    }
    
    .flow-text {
        padding: 0 0.25rem;
    }
    
    .step-number {
        font-size: 0.625rem;
        padding: 0.25rem 0.625rem;
        margin-bottom: 0.875rem;
    }
    
    .flow-text h3 {
        font-size: 1.375rem;
        margin-bottom: 0.875rem;
        line-height: 1.2;
    }
    
    .flow-text p {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }
    
    .flow-benefits {
        margin-top: 0.875rem;
    }
    
    .flow-benefits li {
        font-size: 0.875rem;
        padding: 0.5rem 0;
        padding-left: 1.5rem;
    }
    
    .flow-example {
        padding: 1rem;
        margin-top: 0.875rem;
    }
    
    .command-text,
    .example-response {
        font-size: 0.875rem;
    }
    
    /* Features */
    .features-grid {
        gap: 1.25rem;
    }
    
    .feature-card {
        padding: 1.75rem 1.25rem;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.625rem;
    }
    
    .feature-card p {
        font-size: 0.875rem;
    }
    
    /* Use Cases */
    .use-case-card {
        padding: 1.75rem 1.25rem;
    }
    
    .use-case-card h3 {
        font-size: 1.25rem;
    }
    
    /* Command Center */
    .command-center {
        padding: 2.5rem 0;
    }
    
    .command-intro {
        padding: 0 0.25rem;
        margin-bottom: 1.5rem;
    }
    
    .command-lead {
        font-size: 1.375rem;
        margin-bottom: 0.875rem;
    }
    
    .command-intro p {
        font-size: 0.9375rem;
    }
    
    .example-card {
        padding: 1.25rem;
    }
    
    .feature-item {
        padding: 1.25rem;
    }
    
    .feature-item h4 {
        font-size: 1.125rem;
    }
    
    .command-benefits {
        padding: 1.75rem 1.25rem;
    }
    
    .command-benefits h3 {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }
    
    .command-benefits p {
        font-size: 1rem;
    }
    
    /* Pricing */
    .pricing {
        padding: 2.5rem 0;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        display: grid !important;
        gap: 1.5rem !important;
        margin-top: 1.5rem;
        max-width: 100% !important;
    }
    
    .pricing-card {
        padding: 1.5rem;
        min-width: 0;
    }
    
    .pricing-card.featured {
        margin-top: 0.5rem;
        padding-top: 2.25rem;
        position: relative;
        overflow: visible !important;
    }
    
    .featured-badge {
        top: -14px !important;
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, 0) !important;
        -webkit-transform: translate(-50%, 0) !important;
        padding: 0.4375rem 1rem !important;
        font-size: 0.75rem !important;
        position: absolute !important;
        z-index: 10 !important;
        margin: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center !important;
        width: auto !important;
    }
    
    .pricing-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }
    
    .price {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }
    
    .price-amount {
        font-size: 2.25rem;
    }
    
    .price-period {
        font-size: 1rem;
    }
    
    .pricing-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    .pricing-features {
        margin-bottom: 1.25rem;
    }
    
    .pricing-features li {
        padding: 0.5rem 0;
        font-size: 0.875rem;
        padding-left: 1.25rem;
    }
    
    .pricing-subscribe-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .pricing-toggle {
        padding: 0.5rem;
        gap: 0.625rem;
        flex-wrap: nowrap;
        width: auto;
    }
    
    .toggle-label {
        font-size: 0.8125rem;
        padding: 0.375rem 0.625rem;
    }
    
    .toggle-savings {
        display: block;
        margin-left: 0;
        margin-top: 0.125rem;
        font-size: 0.625rem;
    }
    
    .toggle-switch {
        width: 48px;
        height: 28px;
        flex-shrink: 0;
    }
    
    .toggle-slider:before {
        height: 20px;
        width: 20px;
        left: 4px;
        bottom: 4px;
    }
    
    .toggle-switch input:checked + .toggle-slider:before {
        transform: translateX(20px);
        -webkit-transform: translateX(20px);
    }
    
    .pricing-note {
        margin-top: 2rem;
        padding: 0 0.5rem;
    }
    
    .pricing-note p {
        font-size: 0.875rem;
    }
    
    /* Coming Soon */
    .coming-soon {
        padding: 2.5rem 0;
    }
    
    .coming-soon-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .coming-soon-card {
        padding: 1.25rem;
    }
    
    .coming-soon-card h4 {
        font-size: 0.9375rem;
        margin-bottom: 0.5rem;
    }
    
    .coming-soon-card p {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    
    /* CTA Section */
    .cta {
        padding: 2.5rem 0;
    }
    
    .cta-content {
        padding: 0 0.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.625rem;
    }
    
    .cta-content p {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
        padding: 0 0.25rem;
    }
    
    .cta-buttons {
        padding: 0 0.5rem;
        gap: 0.625rem;
    }
    
    .cta-buttons .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    /* Mission */
    .mission {
        padding: 2.5rem 0;
    }
    
    .mission-content {
        padding: 0 0.5rem;
    }
    
    .mission-text {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }
    
    .mission-description {
        font-size: 1rem;
    }
    
    .about-target {
        padding: 2rem 1.25rem;
    }
    
    .about-target h3 {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }
    
    .about-target p {
        font-size: 0.9375rem;
    }
    
    /* Mockups */
    .mobile-mockup {
        width: 360px !important;
        max-width: 360px !important;
        min-width: 360px !important;
    }
    
    .mobile-screen {
        min-height: 500px;
    }
    
    .flow-visual {
        display: flex;
        justify-content: center;
        width: 100%;
        overflow: visible;
        padding: 0 0.5rem;
    }
    
    .omnibar-mockup,
    .tasks-mockup,
    .trades-mockup,
    .announcement-mockup,
    .event-mockup {
        padding: 1rem;
    }
    
    /* Calendar */
    .calendar-week {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .calendar-weekdays {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .mockup-calendar {
        padding: 0.75rem;
        overflow: visible;
    }
    
    .schedule-mockup {
        padding: 0.75rem;
        overflow: visible;
    }
    
    .calendar-day {
        min-height: 80px;
        min-width: 0;
        width: 100%;
        padding: 0.625rem;
        box-sizing: border-box;
    }
    
    .calendar-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    
    .calendar-month {
        font-size: 1rem;
    }
    
    .shift-block {
        padding: 0.625rem;
        font-size: 0.8125rem;
    }
    
    .shift-name {
        font-size: 0.875rem;
    }
    
    .shift-time {
        font-size: 0.75rem;
    }
    
    .shift-location {
        font-size: 0.6875rem;
    }
    
    .flow-visual {
        overflow: visible;
        margin-top: 1.25rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.8125rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1.25rem;
    }
    
    .footer-main,
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-logo {
        font-size: 1.25rem;
    }
    
    .footer-tagline {
        font-size: 0.875rem;
    }
    
    .footer-column h4 {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .footer-column a {
        font-size: 0.875rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8125rem;
    }
}

/* Video Cards */
.video-card {
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45, 80, 22, 0.2);
}

.video-thumbnail {
    position: relative;
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.video-card:hover .video-thumbnail::after {
    opacity: 1;
}

/* Practice Cards */
.practice-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45, 80, 22, 0.2);
}

/* Videos Section */
.videos-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Best Practices Section */
.best-practices {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .videos-grid,
    .practices-grid {
        grid-template-columns: 1fr;
    }
    
    .video-card,
    .practice-card {
        padding: 1.5rem;
    }
}



/* ============================================================================
   Component Variants CSS - Comprehensive styling for all screen sizes
   ============================================================================ */

/* Tablet Variants - 769px - 992px */
/* Phone Mockup - Tablet */
.mobile-mockup-tablet {
    width: 300px !important;
    max-width: 300px !important;
    min-width: 300px !important;
    margin: 0 auto !important;
    background: #000 !important;
    border-radius: 28px !important;
    padding: 0.5rem !important;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22), 0 6px 14px rgba(0, 0, 0, 0.12) !important;
    flex-shrink: 0 !important;
    position: relative !important;
    box-sizing: border-box !important;
}

.mobile-screen-tablet {
    background: var(--color-white);
    border-radius: 22px;
    overflow: hidden;
    min-height: 550px;
    width: 100%;
}

.mobile-header-tablet {
    background: #000;
    color: var(--color-white);
    padding: 0.4375rem 0.875rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.6875rem;
    font-weight: 600;
}

.mobile-time-tablet {
    font-size: 0.6875rem;
    font-weight: 600;
}

.mobile-status-tablet {
    display: flex;
    gap: 0.1875rem;
    font-size: 0.5625rem;
}

.mobile-content-tablet {
    padding: 0.875rem;
}

.notification-card-tablet {
    background: var(--color-green-soft);
    border-radius: 10px;
    padding: 0.875rem;
    margin-bottom: 0.875rem;
    display: flex;
    gap: 0.875rem;
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.notification-content-tablet {
    flex: 1;
}

.notification-title-tablet {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.25rem;
}

.notification-text-tablet {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.125rem;
}

.notification-location-tablet {
    font-size: 0.6875rem;
    color: var(--color-green);
    font-weight: 500;
}

.mobile-shift-card-tablet {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 0.875rem;
}

.shift-header-tablet {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.625rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.shift-day-tablet {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.shift-date-tablet {
    font-size: 0.75rem;
    color: #666;
}

.shift-details-tablet {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.shift-time-tablet-display {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-charcoal);
}

.shift-location-tablet-display {
    font-size: 0.75rem;
    color: var(--color-green);
    font-weight: 500;
}

/* Omnibar - Tablet */
.omnibar-mockup-tablet {
    padding: 1.25rem;
}

.mockup-header-tablet {
    background: #F9FAFB;
    padding: 0.875rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.mockup-logo-tablet {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-charcoal);
}

.mockup-omnibar-tablet {
    padding: 1rem;
}

.omnibar-input-tablet {
    background: var(--color-cream);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.875rem;
}

.omnibar-text-tablet {
    color: var(--color-charcoal);
    font-weight: 500;
}

.omnibar-cursor-tablet {
    color: var(--color-green);
    animation: blink 1s infinite;
}

.omnibar-preview-tablet {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.preview-item-tablet {
    padding: 0.625rem;
    background: var(--color-green-soft);
    border-radius: 6px;
    font-size: 0.8125rem;
    color: var(--color-charcoal);
}

/* Calendar - Tablet */
.schedule-mockup-tablet {
    padding: 1.25rem;
}

.mockup-calendar-tablet {
    padding: 1rem;
}

.calendar-header-tablet {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.875rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.calendar-month-tablet {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.calendar-nav-tablet {
    display: flex;
    gap: 0.5rem;
}

.calendar-nav-btn-tablet {
    background: var(--color-cream);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 0.375rem 0.625rem;
    font-size: 0.875rem;
    cursor: pointer;
    color: var(--color-charcoal);
}

.calendar-list-tablet {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.calendar-list-item-tablet {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--color-cream);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.calendar-list-item-tablet.has-shift-tablet {
    background: var(--color-green-soft);
    border-color: rgba(45, 80, 22, 0.15);
}

.list-date-tablet {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 3rem;
    padding: 0.5rem;
    background: var(--color-white);
    border-radius: 6px;
}

.list-day-name-tablet {
    font-size: 0.6875rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
}

.list-day-number-tablet {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.list-shifts-tablet {
    flex: 1;
}

.list-shift-tablet {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.list-shift-name-tablet {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.list-shift-time-tablet {
    font-size: 0.75rem;
    color: #666;
}

.list-shift-location-tablet {
    font-size: 0.6875rem;
    color: var(--color-green);
    font-weight: 500;
}

.list-shift-empty-tablet {
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
}

/* Tasks - Tablet */
.tasks-mockup-tablet {
    padding: 1.25rem;
}

.mockup-tasks-tablet {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.task-item-tablet {
    display: flex;
    gap: 0.875rem;
    padding: 0.875rem;
    background: var(--color-cream);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.task-checkbox-tablet {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 4px;
    background: var(--color-green);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.task-content-tablet {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.task-title-tablet {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.task-assignee-tablet {
    font-size: 0.75rem;
    color: #666;
}

.task-status-tablet {
    font-size: 0.6875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

.task-status-tablet.completed-tablet {
    background: var(--color-green-soft);
    color: var(--color-green);
    font-weight: 600;
}

.task-status-tablet.pending-tablet {
    background: #FFF3E0;
    color: var(--color-orange);
    font-weight: 600;
}

/* Announcements - Tablet */
.announcement-mockup-tablet {
    padding: 1.25rem;
}

.mockup-announcement-tablet {
    padding: 1rem;
}

.announcement-form-tablet {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.form-field-tablet {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field-tablet label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.form-input-tablet {
    padding: 0.75rem;
    background: var(--color-cream);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--color-charcoal);
}

.target-badge-tablet {
    display: inline-block;
    padding: 0.5rem 0.875rem;
    background: var(--color-green-soft);
    color: var(--color-green);
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    width: fit-content;
}

.form-actions-tablet {
    display: flex;
    gap: 0.75rem;
}

.form-btn-tablet {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-btn-tablet.primary-tablet {
    background: var(--color-green);
    color: var(--color-white);
}

.form-btn-tablet.secondary-tablet {
    background: var(--color-cream);
    color: var(--color-charcoal);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Trades - Tablet */
.trades-mockup-tablet {
    padding: 1.25rem;
}

.mockup-trades-tablet {
    padding: 1rem;
}

.trade-request-tablet {
    background: var(--color-cream);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 1rem;
}

.trade-header-tablet {
    margin-bottom: 0.875rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.trade-title-tablet {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.trade-details-tablet {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.trade-from-tablet,
.trade-to-tablet {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.trade-arrow-tablet {
    font-size: 1.25rem;
    color: var(--color-green);
    font-weight: 600;
}

.trade-shift-tablet {
    font-size: 0.75rem;
    color: #666;
}

.trade-actions-tablet {
    display: flex;
    gap: 0.75rem;
}

.trade-btn-tablet {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.trade-btn-tablet.approve-tablet {
    background: var(--color-green);
    color: var(--color-white);
}

.trade-btn-tablet.reject-tablet {
    background: var(--color-red);
    color: var(--color-white);
}

/* Events - Tablet */
.event-mockup-tablet {
    padding: 1.25rem;
}

.mockup-event-tablet {
    padding: 1rem;
}

.event-card-tablet {
    background: var(--color-cream);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 1rem;
}

.event-header-tablet {
    margin-bottom: 0.875rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.event-info-tablet {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.event-name-tablet {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.event-date-tablet {
    font-size: 0.8125rem;
    color: #666;
}

.event-details-tablet {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.875rem;
}

.event-detail-tablet {
    font-size: 0.8125rem;
    color: var(--color-charcoal);
}

.event-shifts-tablet {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-shift-item-tablet {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem;
    background: var(--color-white);
    border-radius: 6px;
}

.shift-role-tablet {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.shift-count-tablet {
    font-size: 0.75rem;
    color: var(--color-green);
    font-weight: 600;
}

/* Mobile Variants - 481px - 768px */
/* (These inherit from tablet variants with size adjustments) */
.mobile-mockup-large {
    width: 320px !important;
    max-width: 320px !important;
    min-width: 320px !important;
    margin: 0 auto !important;
    background: #000 !important;
    border-radius: 28px !important;
    padding: 0.5rem !important;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22), 0 6px 14px rgba(0, 0, 0, 0.12) !important;
    flex-shrink: 0 !important;
    position: relative !important;
    box-sizing: border-box !important;
}

.mobile-screen-large {
    background: var(--color-white);
    border-radius: 22px;
    overflow: hidden;
    min-height: 550px;
    width: 100%;
}

.mobile-header-large {
    background: #000;
    color: var(--color-white);
    padding: 0.4375rem 0.875rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.6875rem;
    font-weight: 600;
}

.mobile-time-large {
    font-size: 0.6875rem;
    font-weight: 600;
}

.mobile-status-large {
    display: flex;
    gap: 0.1875rem;
    font-size: 0.5625rem;
}

.mobile-content-large {
    padding: 0.875rem;
}

.notification-card-large,
.notification-content-large,
.notification-title-large,
.notification-text-large,
.notification-location-large,
.mobile-shift-card-large,
.shift-header-large,
.shift-day-large,
.shift-date-large,
.shift-details-large,
.shift-time-large-display,
.shift-location-large-display,
.mobile-announcement-feed-large,
.announcement-item-large,
.announcement-header-large,
.announcement-title-large,
.announcement-message-large,
.announcement-meta-large,
.unread-badge-large {
    /* Inherit from tablet variants */
}

/* Mobile components inherit tablet styles but with adjusted sizing */
.omnibar-mockup-mobile,
.schedule-mockup-mobile,
.tasks-mockup-mobile,
.announcement-mockup-mobile,
.trades-mockup-mobile,
.event-mockup-mobile {
    padding: 1rem;
}

.mockup-header-mobile,
.mockup-nav-mobile,
.mockup-logo-mobile,
.mockup-omnibar-mobile,
.omnibar-input-mobile,
.omnibar-text-mobile,
.omnibar-cursor-mobile,
.omnibar-preview-mobile,
.preview-item-mobile,
.mockup-calendar-mobile,
.calendar-header-mobile,
.calendar-month-mobile,
.calendar-nav-mobile,
.calendar-nav-btn-mobile,
.calendar-list-mobile,
.calendar-list-item-mobile,
.list-date-mobile,
.list-day-name-mobile,
.list-day-number-mobile,
.list-shifts-mobile,
.list-shift-mobile,
.list-shift-name-mobile,
.list-shift-time-mobile,
.list-shift-location-mobile,
.list-shift-empty-mobile,
.mockup-tasks-mobile,
.task-item-mobile,
.task-checkbox-mobile,
.task-content-mobile,
.task-title-mobile,
.task-assignee-mobile,
.task-status-mobile,
.mockup-announcement-mobile,
.announcement-form-mobile,
.form-field-mobile,
.form-input-mobile,
.target-badge-mobile,
.form-actions-mobile,
.form-btn-mobile,
.mockup-trades-mobile,
.trade-request-mobile,
.trade-header-mobile,
.trade-title-mobile,
.trade-details-mobile,
.trade-from-mobile,
.trade-to-mobile,
.trade-arrow-mobile,
.trade-shift-mobile,
.trade-actions-mobile,
.trade-btn-mobile,
.mockup-event-mobile,
.event-card-mobile,
.event-header-mobile,
.event-info-mobile,
.event-name-mobile,
.event-date-mobile,
.event-details-mobile,
.event-detail-mobile,
.event-shifts-mobile,
.event-shift-item-mobile,
.shift-role-mobile,
.shift-count-mobile {
    /* Inherit from tablet variants */
}

/* Mobile Small Variants - max-width: 480px */
.mobile-mockup-mobile-small {
    width: 280px !important;
    max-width: 280px !important;
    min-width: 280px !important;
    margin: 0 auto !important;
    background: #000 !important;
    border-radius: 24px !important;
    padding: 0.4375rem !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    flex-shrink: 0 !important;
    position: relative !important;
    box-sizing: border-box !important;
}

.mobile-screen-mobile-small {
    background: var(--color-white);
    border-radius: 18px;
    overflow: hidden;
    min-height: 500px;
    width: 100%;
}

.mobile-header-mobile-small {
    background: #000;
    color: var(--color-white);
    padding: 0.375rem 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.625rem;
    font-weight: 600;
}

.mobile-time-mobile-small {
    font-size: 0.625rem;
    font-weight: 600;
}

.mobile-status-mobile-small {
    display: flex;
    gap: 0.125rem;
    font-size: 0.5rem;
}

.mobile-content-mobile-small {
    padding: 0.75rem;
}

.notification-card-mobile-small {
    background: var(--color-green-soft);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.75rem;
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.notification-content-mobile-small {
    flex: 1;
}

.notification-title-mobile-small {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.1875rem;
}

.notification-text-mobile-small {
    font-size: 0.6875rem;
    color: #666;
    margin-bottom: 0.125rem;
}

.notification-location-mobile-small {
    font-size: 0.625rem;
    color: var(--color-green);
    font-weight: 500;
}

.mobile-shift-card-mobile-small {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 0.75rem;
}

.shift-header-mobile-small {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding-bottom: 0.4375rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.shift-day-mobile-small {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.shift-date-mobile-small {
    font-size: 0.6875rem;
    color: #666;
}

.shift-details-mobile-small {
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
}

.shift-time-mobile-small-display {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-charcoal);
}

.shift-location-mobile-small-display {
    font-size: 0.6875rem;
    color: var(--color-green);
    font-weight: 500;
}

/* Mobile Small components inherit tablet/mobile styles with reduced sizing */
.omnibar-mockup-mobile-small,
.schedule-mockup-mobile-small,
.tasks-mockup-mobile-small,
.announcement-mockup-mobile-small,
.trades-mockup-mobile-small,
.event-mockup-mobile-small {
    padding: 0.875rem;
}

.mockup-header-mobile-small,
.mockup-nav-mobile-small,
.mockup-logo-mobile-small,
.mockup-omnibar-mobile-small,
.omnibar-input-mobile-small,
.omnibar-text-mobile-small,
.omnibar-cursor-mobile-small,
.omnibar-preview-mobile-small,
.preview-item-mobile-small,
.mockup-calendar-mobile-small,
.calendar-header-mobile-small,
.calendar-month-mobile-small,
.calendar-nav-mobile-small,
.calendar-nav-btn-mobile-small,
.calendar-list-mobile-small,
.calendar-list-item-mobile-small,
.list-date-mobile-small,
.list-day-name-mobile-small,
.list-day-number-mobile-small,
.list-shifts-mobile-small,
.list-shift-mobile-small,
.list-shift-name-mobile-small,
.list-shift-time-mobile-small,
.list-shift-location-mobile-small,
.list-shift-empty-mobile-small,
.mockup-tasks-mobile-small,
.task-item-mobile-small,
.task-checkbox-mobile-small,
.task-content-mobile-small,
.task-title-mobile-small,
.task-assignee-mobile-small,
.task-status-mobile-small,
.mockup-announcement-mobile-small,
.announcement-form-mobile-small,
.form-field-mobile-small,
.form-input-mobile-small,
.target-badge-mobile-small,
.form-actions-mobile-small,
.form-btn-mobile-small,
.mockup-trades-mobile-small,
.trade-request-mobile-small,
.trade-header-mobile-small,
.trade-title-mobile-small,
.trade-details-mobile-small,
.trade-from-mobile-small,
.trade-to-mobile-small,
.trade-arrow-mobile-small,
.trade-shift-mobile-small,
.trade-actions-mobile-small,
.trade-btn-mobile-small,
.mockup-event-mobile-small,
.event-card-mobile-small,
.event-header-mobile-small,
.event-info-mobile-small,
.event-name-mobile-small,
.event-date-mobile-small,
.event-details-mobile-small,
.event-detail-mobile-small,
.event-shifts-mobile-small,
.event-shift-item-mobile-small,
.shift-role-mobile-small,
.shift-count-mobile-small,
.mobile-announcement-feed-mobile-small,
.announcement-item-mobile-small,
.announcement-header-mobile-small,
.announcement-title-mobile-small,
.announcement-message-mobile-small,
.announcement-meta-mobile-small,
.unread-badge-mobile-small {
    /* Inherit from tablet/mobile variants with smaller sizing */
    font-size: 90%;
    padding: 85%;
}

/* ============================================================================
   NEW DESIGNS - Schedule UI and Phone Mockups
   ============================================================================ */

/* Hide ALL duplicate components */
.desktop-large-only,
.desktop-only,
.tablet-only,
.mobile-only,
.mobile-small-only {
    display: none !important;
}

/* ============================================================================
   REDESIGNED SCHEDULE/CALENDAR UI
   ============================================================================ */

.schedule-mockup {
    padding: 2.5rem !important;
    width: 100% !important;
    max-width: 900px !important;
    min-width: 700px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

@media (max-width: 992px) {
    .schedule-mockup {
        min-width: 100% !important;
        padding: 1.5rem !important;
    }
}

/* Desktop Calendar View */
.calendar-desktop-view {
    display: block !important;
}

.calendar-mobile-view {
    display: none !important;
}

@media (max-width: 992px) {
    .calendar-desktop-view {
        display: none !important;
    }
    
    .calendar-mobile-view {
        display: block !important;
    }
}

.mockup-calendar {
    margin-top: 1rem;
    background: var(--color-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible;
    box-sizing: border-box;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid #F3F4F6;
}

.calendar-title {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.calendar-month {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-charcoal);
    letter-spacing: -0.02em;
}

.calendar-year {
    font-size: 1.25rem;
    font-weight: 500;
    color: #6B7280;
    letter-spacing: -0.01em;
}

.calendar-nav {
    display: flex;
    gap: 0.5rem;
}

.calendar-nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-charcoal);
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    background: #F9FAFB;
    border-color: var(--color-green);
    color: var(--color-green);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.calendar-weekday {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.75rem;
}

.calendar-day {
    min-height: 140px;
    padding: 1rem;
    background: #FAFBFC;
    border: 1px solid #F3F4F6;
    border-radius: 12px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.calendar-day:hover {
    background: #F9FAFB;
    border-color: #E5E7EB;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.calendar-day.has-shift {
    background: linear-gradient(135deg, var(--color-green-soft) 0%, rgba(232, 245, 233, 0.8) 100%);
    border-color: rgba(45, 80, 22, 0.2);
}

.day-number {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.shift-block {
    background: var(--color-white);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(45, 80, 22, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.shift-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-charcoal);
    letter-spacing: -0.01em;
}

.shift-time {
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 500;
}

.shift-location {
    font-size: 0.6875rem;
    color: var(--color-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mobile Calendar View */
.calendar-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #F3F4F6;
}

.calendar-title-mobile .calendar-month-mobile {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-charcoal);
}

.calendar-nav-mobile {
    display: flex;
    gap: 0.5rem;
}

.calendar-nav-btn-mobile {
    width: 36px;
    height: 36px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-charcoal);
    font-size: 1.125rem;
    cursor: pointer;
}

.calendar-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.calendar-list-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #FAFBFC;
    border: 1px solid #F3F4F6;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.calendar-list-item.has-shift {
    background: linear-gradient(135deg, var(--color-green-soft) 0%, rgba(232, 245, 233, 0.8) 100%);
    border-color: rgba(45, 80, 22, 0.2);
}

.list-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 0.75rem;
    background: var(--color-white);
    border-radius: 10px;
    border: 1px solid #E5E7EB;
}

.list-day-name {
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.list-day-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-charcoal);
    line-height: 1;
    margin-top: 0.25rem;
}

.list-shifts {
    flex: 1;
}

.list-shift {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.list-shift-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-charcoal);
}

.list-shift-time {
    font-size: 0.8125rem;
    color: #6B7280;
}

.list-shift-location {
    font-size: 0.75rem;
    color: var(--color-green);
    font-weight: 600;
}

.list-shift-empty {
    font-size: 0.875rem;
    color: #9CA3AF;
    font-style: italic;
    padding: 0.5rem 0;
}

/* ============================================================================
   REDESIGNED PHONE MOCKUP - iPhone-like
   ============================================================================ */

.mobile-phone-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.mobile-phone-frame {
    width: 375px;
    max-width: 100%;
    aspect-ratio: 375 / 812;
    background: linear-gradient(135deg, #1C1C1E 0%, #2C2C2E 100%);
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.mobile-phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 45px;
    overflow: hidden;
    position: relative;
}

/* iPhone Notch */
.mobile-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

/* Status Bar */
.mobile-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem 0.5rem;
    padding-top: 2.5rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 600;
    position: relative;
    z-index: 5;
}

.mobile-status-left {
    display: flex;
    align-items: center;
}

.mobile-time {
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.mobile-status-right {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
}

.mobile-signal {
    letter-spacing: 0.125rem;
}

/* App Content */
.mobile-app-content {
    background: var(--color-white);
    min-height: calc(100% - 70px);
    padding: 1.25rem;
    overflow-y: auto;
}

.mobile-notification-card {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.notification-icon-badge {
    font-size: 1.5rem;
    line-height: 1;
}

.notification-details {
    flex: 1;
    color: var(--color-white);
}

.notification-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.notification-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.375rem;
}

.notification-time {
    font-size: 0.8125rem;
    opacity: 0.8;
}

.mobile-shift-detail-card {
    background: #FAFBFC;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.shift-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #E5E7EB;
}

.shift-day-badge {
    background: var(--color-green);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shift-date-text {
    font-size: 0.9375rem;
    color: #6B7280;
    font-weight: 600;
}

.shift-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shift-time-display {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-charcoal);
    letter-spacing: -0.02em;
}

.shift-location-display {
    font-size: 0.9375rem;
    color: var(--color-green);
    font-weight: 600;
}

.shift-status {
    display: inline-block;
    width: fit-content;
    background: var(--color-green-soft);
    color: var(--color-green);
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mobile-phone-frame {
        width: 320px;
    }
    
    .mobile-phone-frame {
        border-radius: 40px;
    }
    
    .mobile-phone-screen {
        border-radius: 35px;
    }
    
    .mobile-notch {
        width: 120px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .mobile-phone-frame {
        width: 280px;
        border-radius: 35px;
    }
    
    .mobile-phone-screen {
        border-radius: 30px;
    }
    
    .mobile-app-content {
        padding: 1rem;
    }
}

/* Fix for calendar week display */
.calendar-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.75rem;
}

/* ============================================================================
   APPLE-STYLE FLOW SECTION REDESIGN
   ============================================================================ */

.flow-section {
    padding: 8rem 0 !important;
    background: var(--color-white);
    position: relative;
}

.flow-section-header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.flow-main-title {
    font-size: 4rem;
    font-weight: 600;
    color: var(--color-charcoal);
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.flow-main-subtitle {
    font-size: 1.375rem;
    color: #6B7280;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.flow-steps-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.flow-step-modern {
    margin-bottom: 12rem;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.flow-step-modern:last-child {
    margin-bottom: 0;
}

.flow-content-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.flow-content-modern:nth-child(even) .flow-text-modern {
    order: 2;
}

.flow-content-modern:nth-child(even) .flow-visual-modern {
    order: 1;
}

.flow-text-modern {
    padding: 0;
}

.step-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-green);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(6, 95, 70, 0.1);
}

.flow-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-charcoal);
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.flow-description {
    font-size: 1.25rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.flow-example-modern {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(232, 245, 233, 0.4) 0%, rgba(232, 245, 233, 0.2) 100%);
    border-radius: 16px;
    border: 1px solid rgba(6, 95, 70, 0.1);
}

.example-line {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.example-label {
    color: var(--color-green);
    font-weight: 600;
    font-size: 0.9375rem;
}

.example-text {
    color: var(--color-charcoal);
    font-size: 1.0625rem;
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    letter-spacing: -0.01em;
}

.example-response-modern {
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
    padding-top: 1rem;
    border-top: 1px solid rgba(6, 95, 70, 0.1);
}

.example-response-modern strong {
    color: var(--color-green);
    font-weight: 600;
}

.flow-benefits-modern {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.flow-benefits-modern li {
    padding: 0.875rem 0;
    color: #374151;
    font-size: 1.0625rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.flow-benefits-modern li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: 600;
    font-size: 1.25rem;
}

/* App Window Styles */
.flow-visual-modern {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-window {
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    width: 100%;
    max-width: 650px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-window:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 24px 72px rgba(0, 0, 0, 0.18),
        0 10px 32px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.window-header {
    background: linear-gradient(to bottom, #F5F5F7 0%, #EDEDF1 100%);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.window-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #FF5F57; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #28CA42; }

.window-title {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.window-body {
    padding: 2rem;
    background: var(--color-white);
}

/* Omnibar Modern Styles */
.omnibar-modern {
    width: 100%;
}

.omnibar-input-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: #F5F5F7;
    border-radius: 12px;
    border: 2px solid transparent;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
}

.omnibar-input-modern:focus-within {
    border-color: var(--color-green);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(6, 95, 70, 0.1);
}

.omnibar-prompt {
    color: var(--color-green);
    font-weight: 600;
    font-size: 1.125rem;
}

.omnibar-text-modern {
    color: var(--color-charcoal);
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    flex: 1;
}

.omnibar-cursor-modern {
    color: var(--color-green);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.omnibar-preview-modern {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.preview-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.preview-row:last-child {
    border-bottom: none;
}

.preview-label {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 500;
}

.preview-value {
    font-size: 0.9375rem;
    color: var(--color-charcoal);
    font-weight: 600;
}

/* Calendar Modern Styles */
.calendar-modern {
    width: 100%;
}

.calendar-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-month-year {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.calendar-nav-modern {
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--color-white);
    color: var(--color-charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background: #F5F5F7;
    border-color: rgba(0, 0, 0, 0.15);
}

.calendar-weekdays-modern {
    display: none;
}

.weekday {
    text-align: center;
    font-size: 0.8125rem;
    color: #6B7280;
    font-weight: 500;
    padding: 0.5rem 0;
}

.calendar-grid-modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.calendar-row-modern {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 1rem;
    align-items: stretch;
    margin-bottom: 0.75rem;
}

.weekday-horizontal {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 600;
    text-align: left;
    padding: 0.75rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 50px;
    width: 50px;
}

.calendar-day-modern {
    min-height: 100px;
    width: 100%;
    border-radius: 10px;
    background: #F9FAFB;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0.75rem;
    position: relative;
    transition: all 0.2s ease;
    overflow: hidden;
}

.calendar-day-modern:hover {
    background: #F5F5F7;
    border-color: rgba(0, 0, 0, 0.1);
}

.calendar-day-modern.has-shift-modern {
    background: rgba(232, 245, 233, 0.5);
    border-color: rgba(6, 95, 70, 0.3);
    border-width: 2px;
}

.day-number-modern {
    font-size: 0.875rem;
    color: var(--color-charcoal);
    font-weight: 600;
    margin-bottom: 0.5rem;
    width: 100%;
}

.shift-block-modern {
    width: 100%;
    padding: 0.625rem;
    background: var(--color-white);
    border-radius: 8px;
    border: 1px solid rgba(6, 95, 70, 0.2);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.shift-name-modern {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: 0.25rem;
}

.shift-time-modern {
    font-size: 0.6875rem;
    color: #6B7280;
    margin-bottom: 0.125rem;
}

.shift-location-modern {
    font-size: 0.6875rem;
    color: #6B7280;
}

/* Tasks Modern Styles */
.tasks-list-modern {
    width: 100%;
}

.task-item-modern {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #F9FAFB;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

.task-item-modern:hover {
    background: #F5F5F7;
    border-color: rgba(0, 0, 0, 0.12);
}

.task-item-modern.completed {
    background: rgba(232, 245, 233, 0.3);
    border-color: rgba(6, 95, 70, 0.15);
}

.task-item-modern.active {
    background: rgba(255, 237, 213, 0.3);
    border-color: rgba(194, 65, 12, 0.15);
}

.task-check-modern {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--color-green);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

.task-content-modern {
    flex: 1;
}

.task-title-modern {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.375rem;
}

.task-meta-modern {
    font-size: 0.875rem;
    color: #6B7280;
}

/* Announcements Modern Styles */
.announcement-form-modern {
    width: 100%;
}

.form-field-modern {
    margin-bottom: 1.5rem;
}

.form-field-modern label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.form-input-modern {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #F5F5F7;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 1rem;
    color: var(--color-charcoal);
}

.target-badge-modern {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(6, 95, 70, 0.1);
    color: var(--color-green);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
}

.form-actions-modern {
    display: flex;
    gap: 0.75rem;
}

.btn-modern {
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.btn-modern.primary:hover {
    background: #047857;
}

.btn-modern.secondary {
    background: #F5F5F7;
    color: var(--color-charcoal);
}

.btn-modern.secondary:hover {
    background: #EDEDF1;
}

.btn-modern.approve {
    background: var(--color-green);
    color: var(--color-white);
}

.btn-modern.reject {
    background: #EF4444;
    color: var(--color-white);
}

/* Trades Modern Styles */
.trade-request-modern {
    width: 100%;
    padding: 2rem;
    background: #F9FAFB;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.trade-header-modern {
    margin-bottom: 1.5rem;
}

.trade-title-modern {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.trade-details-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.trade-party {
    flex: 1;
}

.trade-party strong {
    display: block;
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 0.5rem;
}

.trade-shift-modern {
    font-size: 1rem;
    color: var(--color-charcoal);
    font-weight: 500;
    white-space: nowrap;
}

.trade-arrow-modern {
    font-size: 1.5rem;
    color: var(--color-green);
    font-weight: 600;
}

.trade-actions-modern {
    display: flex;
    gap: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .flow-main-title {
        font-size: 3.5rem;
    }
    
    .flow-title {
        font-size: 2.5rem;
    }
    
    .flow-content-modern {
        gap: 4rem;
    }
}

@media (max-width: 992px) {
    .flow-section {
        padding: 6rem 0 !important;
    }
    
    .flow-main-title {
        font-size: 3rem;
    }
    
    .flow-main-subtitle {
        font-size: 1.25rem;
    }
    
    .flow-title {
        font-size: 2.25rem;
    }
    
    .flow-description {
        font-size: 1.125rem;
    }
    
    .flow-content-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .flow-content-modern:nth-child(even) .flow-text-modern,
    .flow-content-modern:nth-child(even) .flow-visual-modern {
        order: 0;
    }
    
    .flow-step-modern {
        margin-bottom: 8rem;
    }
}

@media (max-width: 768px) {
    .flow-section {
        padding: 4rem 0 !important;
    }
    
    .flow-section-header {
        margin-bottom: 4rem;
        padding: 0 1rem;
    }
    
    .flow-main-title {
        font-size: 2.5rem;
    }
    
    .flow-main-subtitle {
        font-size: 1.125rem;
    }
    
    .flow-title {
        font-size: 2rem;
    }
    
    .flow-description {
        font-size: 1rem;
    }
    
    .flow-steps-container {
        padding: 0 1rem;
    }
    
    .flow-step-modern {
        margin-bottom: 6rem;
    }
    
    .app-window {
        max-width: 100%;
    }
    
    .window-body {
        padding: 1.5rem;
    }
}

/* Update pricing cards spacing - Side by side on desktop/tablet, stacked on mobile only */
@media (max-width: 992px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
        max-width: 100% !important;
        display: grid !important;
    }
    
    .pricing-card {
        min-width: 0;
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
        max-width: 100% !important;
        display: grid !important;
    }
    
    .pricing-card {
        min-width: 0;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-cards {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        max-width: 100% !important;
    }
    
    .pricing-card {
        min-width: 0;
        padding: 1.25rem;
    }
    
    .pricing-card h3 {
        font-size: 1.125rem;
    }
    
    .pricing-description {
        font-size: 0.8125rem;
    }
}

/* ============================================================================
   PHONE MOCKUP - Modern Phone Design Without Window Dots
   ============================================================================ */

.phone-mockup-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.phone-frame {
    width: 375px;
    max-width: 100%;
    aspect-ratio: 375 / 812;
    background: #1F2937;
    border-radius: 40px;
    padding: 0.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 8px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-frame:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 24px 72px rgba(0, 0, 0, 0.35),
        0 10px 32px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-white);
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Phone Status Bar */
.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.phone-time {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-charcoal);
    letter-spacing: -0.01em;
}

.phone-status-icons {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--color-charcoal);
}

.phone-signal {
    letter-spacing: 0.125rem;
}

/* Phone Content */
.phone-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    background: var(--color-white);
}

.phone-header {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.phone-app-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal);
    letter-spacing: -0.01em;
}

/* Phone Notification Modern */
.phone-notification-modern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(6, 95, 70, 0.1) 0%, rgba(232, 245, 233, 0.3) 100%);
    border-radius: 12px;
    border: 1px solid rgba(6, 95, 70, 0.15);
}

.notification-badge-modern {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.notification-content-modern {
    flex: 1;
}

.notification-title-modern {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.25rem;
}

.notification-meta-modern {
    font-size: 0.875rem;
    color: #6B7280;
}

/* Phone Shift Card Modern */
.phone-shift-card-modern {
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
}

.shift-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.shift-day-modern {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.shift-date-modern {
    font-size: 0.875rem;
    color: #6B7280;
}

.shift-details-modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shift-time-modern {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-charcoal);
}

.shift-location-modern {
    font-size: 0.9375rem;
    color: #6B7280;
}

.shift-status-modern {
    margin-top: 0.5rem;
}

.status-badge-modern {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.status-badge-modern.confirmed {
    background: rgba(6, 95, 70, 0.1);
    color: var(--color-green);
}

/* Phone Action Button */
.phone-action-modern {
    margin-top: 0.5rem;
}

.btn-mobile-modern {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-mobile-modern.primary {
    background: var(--color-green);
    color: var(--color-white);
}

.btn-mobile-modern.primary:hover {
    background: #047857;
}

@media (max-width: 992px) {
    .phone-frame {
        width: 320px;
        border-radius: 35px;
    }
    
    .phone-screen {
        border-radius: 31px;
    }
    
    .phone-content {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .phone-frame {
        width: 280px;
        border-radius: 30px;
    }
    
    .phone-screen {
        border-radius: 26px;
    }
    
    .phone-content {
        padding: 1rem;
    }
    
    .phone-notification-modern {
        padding: 1rem;
    }
    
    .phone-shift-card-modern {
        padding: 1.25rem;
    }
}

/* ============================================================================
   Why Us Page Styles
   ============================================================================ */

/* Pricing Hero (shared with pricing and why-us pages) */
.pricing-hero {
    background: linear-gradient(135deg, #2D5016 0%, #4A7C2A 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Why Us Page - Introduction */
.intro-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text.emphasis {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.intro-text:last-child {
    margin-bottom: 0;
}

/* Benefit Lists */
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.benefit-list li {
    font-size: 0.9375rem;
    color: #6B7280;
    line-height: 1.6;
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: 700;
    font-size: 1.125rem;
}

.benefit-conclusion {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-charcoal);
    margin-top: 1rem;
    font-weight: 500;
}

.benefit-conclusion.highlight {
    color: var(--color-green);
    font-weight: 600;
}

.benefit-conclusion.italic {
    font-style: italic;
    color: var(--color-green);
    font-weight: 500;
}

.benefit-subheading {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin: 1rem 0 0.5rem;
}

/* Alternative Background */
.why-alt-bg {
    background-color: #FAFBFC;
}

/* Command Summary */
.command-summary {
    text-align: center;
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.command-summary p {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.7;
}

/* Pricing Footer */
.pricing-footer-text {
    text-align: center;
    margin-top: 3rem;
}

.pricing-footer-text p {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 0.5rem;
}

.pricing-footer-text p:last-child {
    margin-bottom: 0;
}

.pricing-footer-emphasis {
    font-weight: 600;
    color: var(--color-charcoal);
}

/* Coming Soon Text */
.coming-soon-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    font-weight: 500;
}

/* Why Us Highlight Box */
.why-highlight-box {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--color-green-soft) 0%, rgba(232, 245, 233, 0.5) 100%);
    border: 1px solid rgba(45, 80, 22, 0.15);
    border-radius: 16px;
}

.why-highlight-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
}

.why-highlight-box p:last-child {
    margin-bottom: 0;
}

.why-highlight-box .emphasis {
    font-weight: 600;
    color: var(--color-charcoal);
    font-size: 1.25rem;
}

.why-highlight-box em {
    font-style: italic;
    color: var(--color-green);
    font-weight: 500;
}

/* Bottom Line Grid */
.bottom-line-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bottom-line-stat {
    text-align: center;
    padding: 2rem;
}

.bottom-line-stat h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.bottom-line-stat p {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles for Why Us */
@media (max-width: 768px) {
    .pricing-hero {
        padding: 3rem 0 2rem;
    }
    
    .pricing-hero h1 {
        font-size: 2rem;
    }
    
    .pricing-hero p {
        font-size: 1.125rem;
    }
    
    .intro-text {
        font-size: 1.125rem;
        padding: 0 1rem;
    }
    
    .intro-text.emphasis {
        font-size: 1.25rem;
    }
    
    .why-highlight-box {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem 0;
    }
    
    .why-highlight-box p {
        font-size: 1rem;
    }
    
    .why-highlight-box .emphasis {
        font-size: 1.125rem;
    }
    
    .command-summary {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .command-summary p {
        font-size: 1rem;
    }
    
    .bottom-line-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .bottom-line-stat {
        padding: 1.5rem;
    }
    
    .bottom-line-stat h3 {
        font-size: 1.25rem;
    }
    
    .bottom-line-stat p {
        font-size: 0.9375rem;
    }
    
    .coming-soon-text {
        font-size: 1.125rem;
        color: rgba(255, 255, 255, 0.8);
        margin-top: 1rem;
        font-weight: 500;
    }
}

/* =====================================================
   WHY US PAGE - COMPLETE REDESIGN
   ===================================================== */

/* Introduction Section */
.why-intro-section {
    padding: 5rem 0 4rem;
    background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
}

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

.why-intro-content .intro-text {
    text-align: center;
}

/* Benefits Section */
.why-benefits-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.why-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.why-benefit-card {
    background: #FAFBFC;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.why-benefit-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.why-benefit-card > p:first-of-type {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Command Center Section */
.why-command-section {
    padding: 5rem 0;
    background: #FAFBFC;
}

/* Analytics Section */
.why-analytics-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.why-analytics-card {
    max-width: 700px;
    margin: 0 auto;
    background: #FAFBFC;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

.why-analytics-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.why-analytics-card .benefit-list {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

.why-analytics-card .benefit-conclusion {
    text-align: center;
    font-size: 1.0625rem;
}

/* Pricing Section */
.why-pricing-section {
    padding: 5rem 0;
    background: #FAFBFC;
}

.pricing-tagline {
    text-align: center;
    margin-top: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-tagline p {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.pricing-tagline p.emphasis {
    font-weight: 600;
    color: var(--color-charcoal);
}

/* Bottom Line Text Styles */
.bottom-line-main {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-charcoal);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.bottom-line-sub {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.bottom-line-sub strong {
    color: var(--color-charcoal);
    font-weight: 600;
}

.bottom-line-result {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-green);
    margin: 0;
}

/* Responsive - Why Us Page */
@media (max-width: 992px) {
    .why-benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-benefit-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .why-intro-section {
        padding: 3rem 0 2rem;
    }
    
    .why-benefits-section,
    .why-command-section,
    .why-analytics-section,
    .why-pricing-section {
        padding: 3rem 0;
    }
    
    .why-benefit-card {
        padding: 1.75rem;
    }
    
    .why-benefit-card h3 {
        font-size: 1.25rem;
    }
    
    .why-analytics-card {
        padding: 2rem;
    }
    
    .bottom-line-main {
        font-size: 1.125rem;
    }
    
    .bottom-line-result {
        font-size: 1.125rem;
    }
    
    .pricing-tagline p {
        font-size: 1rem;
    }
}

/* =====================================================
   USE CASES PAGE STYLES
   ===================================================== */

/* Alternate background for sections */
.flow-section.alt-bg {
    background: #FAFBFC;
}

/* Dashboard Stats */
.dashboard-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    flex: 1;
    background: #F3F4F6;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-green);
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dashboard Activity */
.dashboard-activity {
    background: #F9FAFB;
    border-radius: 8px;
    padding: 1rem;
}

.activity-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid #E5E7EB;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-time {
    color: #9CA3AF;
    font-weight: 500;
    min-width: 40px;
}

.activity-text {
    color: #374151;
}

/* Event Setup Preview */
.event-setup-preview {
    padding: 1.5rem;
}

.event-header-preview {
    margin-bottom: 1.5rem;
}

.event-header-preview h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin: 0 0 0.25rem;
}

.event-date-preview {
    font-size: 0.875rem;
    color: #6B7280;
}

.event-stats-preview {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.event-stat {
    text-align: center;
}

.event-stat .stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-green);
}

.event-stat .stat-label {
    font-size: 0.75rem;
    color: #6B7280;
}

.event-ready-badge {
    background: var(--color-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
}

/* Event Progress */
.event-progress {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.progress-percent {
    color: var(--color-green);
    font-weight: 600;
}

.progress-bar-visual {
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--color-green);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Event Checklist Preview */
.event-checklist-preview {
    padding: 1rem 1.5rem;
}

.checklist-item {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #6B7280;
}

.checklist-item.done {
    color: var(--color-green);
}

.checklist-item.active {
    color: var(--color-charcoal);
    font-weight: 500;
}

/* Announcement Card Preview */
.announcement-card-preview {
    padding: 1.5rem;
}

.announcement-header-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.announcement-title {
    font-weight: 600;
    color: var(--color-charcoal);
}

.announcement-time {
    font-size: 0.75rem;
    color: #9CA3AF;
}

.announcement-body-preview {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.announcement-stats-preview {
    display: flex;
    gap: 1rem;
    font-size: 0.8125rem;
    color: #6B7280;
}

/* Staff Profile Preview */
.staff-profile-preview {
    padding: 1.5rem;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.profile-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.profile-name {
    font-weight: 600;
    color: var(--color-charcoal);
}

.profile-role {
    font-size: 0.875rem;
    color: #6B7280;
}

.profile-stats {
    display: flex;
    gap: 1.5rem;
}

.profile-stat {
    text-align: center;
}

.profile-stat .stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-charcoal);
}

.profile-stat .stat-label {
    font-size: 0.75rem;
    color: #6B7280;
}

/* Procedures List */
.procedures-list {
    padding: 1rem;
}

.procedure-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.procedure-item:last-child {
    margin-bottom: 0;
}

.procedure-icon {
    font-size: 1.25rem;
}

.procedure-title {
    font-weight: 500;
    color: var(--color-charcoal);
    font-size: 0.9375rem;
}

.procedure-meta {
    font-size: 0.8125rem;
    color: #6B7280;
}

/* Onboarding Progress */
.onboarding-progress {
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.progress-circle {
    width: 60px;
    height: 60px;
    border: 3px solid var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
}

.progress-number {
    font-weight: 700;
    color: var(--color-green);
}

.progress-text {
    font-size: 0.8125rem;
    color: #6B7280;
}

/* Compact Tasks */
.tasks-list-modern.compact {
    padding: 0 1rem;
}

.task-item-modern.small {
    padding: 0.5rem 0;
    font-size: 0.8125rem;
}

.task-item-modern.small .task-check-modern {
    width: 18px;
    height: 18px;
    font-size: 0.75rem;
}

/* Time Off Form */
.time-off-form {
    padding: 1rem;
}

.form-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.form-label {
    color: #6B7280;
    font-size: 0.875rem;
}

.form-value {
    color: var(--color-charcoal);
    font-weight: 500;
    font-size: 0.875rem;
}

.phone-button {
    width: 100%;
    background: var(--color-green);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 500;
    margin-top: 1rem;
}

/* Phone Message Card */
.phone-message-card {
    background: white;
    margin: 1rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.message-text {
    font-size: 0.9375rem;
    color: var(--color-charcoal);
    margin: 0 0 0.75rem;
    line-height: 1.5;
}

.message-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #9CA3AF;
}

/* Urgent Notification */
.phone-notification-modern.urgent {
    background: #FEF2F2;
    border-color: #FCA5A5;
}

.phone-notification-modern.urgent .notification-badge-modern {
    background: #EF4444;
}

/* Pending Task Check */
.task-check-modern.pending {
    background: transparent;
    border: 2px solid #D1D5DB;
    color: #D1D5DB;
}

/* Responsive for Use Cases */
@media (max-width: 768px) {
    .dashboard-stats {
        flex-direction: column;
    }
    
    .event-stats-preview {
        justify-content: center;
    }
    
    .profile-stats {
        justify-content: center;
    }
}
