/* Flowcaptain Landing Page - Dedicated CSS */
/* Fonts are now loaded via fonts.css */

/* ==================== LANDING NAVIGATION ==================== */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #294A42;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.landing-nav-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.landing-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: white;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.6rem;
}

.landing-nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.nav-btn-primary {
  background: #FFDC63;
  color: #294A42;
}

.nav-btn-primary:hover {
  background: #f4d03f;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 220, 99, 0.3);
}

.nav-btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Add top padding to landing page content to account for fixed nav */
.landing-page {
  padding-top: 80px;
}

/* Ensure hero content is visible and not affected by overflow issues */
.hero {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.hero-text {
  position: relative;
  z-index: 2;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .landing-nav-content {
    padding: 0 1rem;
  }
  .landing-logo {
    font-size: 1.2rem;
  }
  .logo-icon {
    font-size: 1.4rem;
  }
  .nav-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 560px) {
  .landing-nav {
    padding: 0.75rem 0;
  }
  
  .landing-nav-content {
    padding: 0 1rem;
  }
  
  .landing-logo {
    font-size: 1.1rem;
  }
  
  .logo-icon {
    font-size: 1.3rem;
  }
  
  .landing-nav-buttons {
    gap: 8px;
  }
  
  .nav-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  /* Mobile dropdown menu */
  .landing-nav-buttons {
    position: relative;
  }
  
  .landing-nav-buttons .nav-btn-primary {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  .landing-page {
    padding-top: 65px;
  }
}

@media (max-width: 400px) {
  .landing-nav-content {
    padding: 0 0.75rem;
  }
  
  .landing-logo {
    font-size: 1rem;
    gap: 6px;
  }
  
  .logo-icon {
    font-size: 1.2rem;
  }
  
  .landing-nav-buttons {
    gap: 6px;
  }
  
  .nav-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
    border-radius: 6px;
  }
}

@media (max-width: 320px) {
  .landing-logo .logo-text {
    display: none;
  }
  
  .landing-nav-buttons {
    flex: 1;
    justify-content: flex-end;
  }
  
  .nav-btn {
    padding: 5px 8px;
    font-size: 0.65rem;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Source Sans Pro', sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #1c1c1e;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #1c1c1e;
}

/* Beta Modal */
.beta-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.beta-modal {
  background: white;
  border-radius: 16px;
  padding: 32px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.beta-modal h3 {
  color: #059669;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.beta-modal p {
  color: #6e6e73;
  line-height: 1.6;
  margin-bottom: 24px;
}

.beta-modal .beta-cta {
  background: linear-gradient(135deg, #059669, #ff8c42);
  color: white;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
  margin: 0 4px;
}

.beta-modal button {
  background: #294A42;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.beta-modal button:hover {
  background: #2a4e44;
  transform: translateY(-1px);
}

.beta-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.beta-icon {
  font-size: 1.2rem;
}

.beta-text {
  flex: 1;
  font-size: 0.9rem;
}

.beta-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.2s;
}

.beta-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Navigation removed - using global header */

/* Landing Page - removed empty ruleset */

body.beta-active .landing-page {
  padding-top: 60px; /* Only for beta banner */
}

/* Hero Section */
.hero {
  padding: 80px 24px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text h1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  /* Cross-browser gradient text */
  background: linear-gradient(135deg, #294A42, #2a4e44);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #294A42; /* Fallback for browsers that don't support gradient text */
}

.hero-text p {
  font-size: 1.3rem;
  color: #6e6e73;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cta-primary,
.cta-secondary {
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-primary {
  background: #294A42;
  color: white;
  border: 2px solid #294A42;
}

.cta-primary:hover {
  background: #2a4e44;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(41, 74, 66, 0.3);
}

.cta-secondary {
  background: transparent;
  color: #294A42;
  border: 2px solid #294A42;
}

.cta-secondary:hover {
  background: #294A42;
  color: white;
  transform: translateY(-2px);
}

.mobile-titles {
  display: none;
}

/* Hero Mockup - Clean Canvas Ready */
.hero-mockup-container {
  perspective: 1000px;
  max-width: 350px;
  margin: 0 auto;
}

.hero-placeholder {
  width: 240px;
  height: 480px;
  background: linear-gradient(135deg, #1c1c1e, #2c2c2e);
  border-radius: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  transform: rotateY(-8deg) rotateX(3deg);
  margin: 0 auto;
}

.hero-mockup-container:hover .hero-placeholder {
  transform: rotateY(0deg) rotateX(0deg);
}

/* Phone Details */
.hero-placeholder::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

.hero-placeholder-icon {
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 12px;
  color: white;
}

.hero-placeholder-screen {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 16px;
  width: calc(100% - 8px);
  height: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}


/* Hero App Interface */
.hero-app-header {
  background: #294A42;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.hero-profile-dot {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-profile-text {
  flex: 1;
}

.hero-name {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.hero-email {
  font-size: 0.7rem;
  opacity: 0.8;
}

.hero-status-section {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-wheel {
  font-size: 1rem;
  animation: pulse 2s infinite;
}

.hero-status-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #30d158;
}

.hero-time-display {
  text-align: center;
}

.hero-current-time {
  font-size: 1.8rem;
  font-weight: 700;
  color: #294A42;
}

.hero-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.hero-start-btn,
.hero-stop-btn {
  flex: 1;
  padding: 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
}

.hero-start-btn {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: white;
}

.hero-stop-btn {
  background: linear-gradient(135deg, #ff6b58, #e74c3c);
  color: white;
}

/* Legacy phone styles removed - replaced with hero-placeholder */

/* Screenshots Gallery */
.screenshots {
  padding: 80px 24px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  color: #294A42;
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #294A42, #059669, var(--yellow));
  z-index: -1;
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.phone-frame {
  max-width: 200px;
  margin: 0 auto 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile Carousel */
.mobile-carousel {
  display: none;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  transition: transform 0.3s ease;
  touch-action: pan-y;
}

.carousel-slide {
  min-width: 80%;
  margin-right: 20px;
  opacity: 0.7;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #294A42;
}

/* Features Showcase Section - Redesigned */
.features-showcase {
  padding: 80px 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #294A42;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6e6e73;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

/* Feature Card */
.feature-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #294A42, var(--yellow));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.feature-card:hover::before {
  opacity: 1;
}

/* Feature Visual (Placeholder) */
.feature-visual {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  position: relative;
  overflow: hidden;
}

.feature-placeholder {
  width: 160px;
  height: 280px;
  background: linear-gradient(135deg, #1c1c1e, #2c2c2e);
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-placeholder::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

.placeholder-icon {
  font-size: 1.2rem;
  margin-bottom: 8px;
  margin-top: 16px;
  color: white;
}

.placeholder-screen {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 12px;
  width: calc(100% - 8px);
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: auto;
  margin-bottom: 12px;
}

.placeholder-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: #6e6e73;
  margin-top: auto;
  text-align: center;
}

/* Specific Placeholder Styles */
.nfc-symbol {
  font-size: 1.5rem;
  color: #294A42;
  animation: pulse 2s infinite;
}

.admin-bars {
  display: flex;
  gap: 4px;
  align-items: end;
  height: 30px;
}

.bar {
  width: 8px;
  background: #294A42;
  border-radius: 2px;
}

.bar-1 { height: 60%; }
.bar-2 { height: 80%; }
.bar-3 { height: 40%; }

.time-blocks {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.time-block {
  width: 20px;
  height: 8px;
  background: #e2e8f0;
  border-radius: 2px;
}

.time-block.active {
  background: #294A42;
}

.chart-placeholder {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 30px;
  margin-bottom: 8px;
}

.chart-bar {
  width: 6px;
  background: linear-gradient(180deg, #294A42, #30d158);
  border-radius: 1px;
}

.user-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.user-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
}

.user-avatar {
  width: 16px;
  height: 16px;
  background: #6e6e73;
  border-radius: 50%;
}

.user-status {
  width: 8px;
  height: 8px;
  background: #e2e8f0;
  border-radius: 50%;
}

.user-status.active {
  background: #30d158;
}

.edit-interface {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.edit-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
}

.edit-time {
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.edit-time.edited {
  background: var(--yellow);
  color: #1c1c1e;
}

.edit-arrow {
  color: #6e6e73;
  font-size: 0.6rem;
}

/* Feature Content */
.feature-content {
  padding: 24px;
}

.feature-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1c1c1e;
  margin-bottom: 12px;
}

.feature-content p {
  color: #6e6e73;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Why Flowcaptain Section */
.why-flowcaptain {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-flowcaptain .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.why-flowcaptain .feature-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-flowcaptain .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

/* SVG Icon styling for feature icons */
.feature-icon .icon {
  width: 48px;
  height: 48px;
  filter: var(--fc-filter-green);
}

.why-flowcaptain .feature-card h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: #294A42;
}

.why-flowcaptain .feature-card p {
  color: #6e6e73;
  line-height: 1.6;
}

/* Special Feature Cards */
.nfc-card .feature-btn {
  background: linear-gradient(135deg, #059669, #ff8c42);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
  transition: all 0.3s ease;
}

.nfc-card .feature-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Footer */
.landing-footer {
  background: #294A42;
  color: white;
  padding: 40px 24px;
  text-align: center;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links {
  margin: 20px 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin: 0 16px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 1001;
  transform: translateX(120%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateX(0);
}

.cookie-banner h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: #6e6e73;
  margin-bottom: 16px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-btn {
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept-all {
  background: #294A42;
  color: white;
}

.cookie-accept-selected {
  background: #059669;
  color: white;
}

.cookie-reject {
  background: rgba(0, 0, 0, 0.1);
  color: #1c1c1e;
}

/* Animations */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes spinSmall {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Small Spinning Wheel for App Preview */
.bike-wheel-small {
  width: 24px;
  height: 24px;
  position: relative;
  animation: spinSmall 2s linear infinite;
  display: inline-block;
}

.rim-small {
  width: 24px;
  height: 24px;
  border: 2px solid #294A42;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.spokes-small {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
}

.spoke-small {
  position: absolute;
  width: 1px;
  height: 8px;
  background: #294A42;
  top: 2px;
  left: 50%;
  transform-origin: 0 10px;
}

.spoke-small.spoke-1 { transform: translateX(-50%) rotate(0deg); }
.spoke-small.spoke-2 { transform: translateX(-50%) rotate(60deg); }
.spoke-small.spoke-3 { transform: translateX(-50%) rotate(120deg); }
.spoke-small.spoke-4 { transform: translateX(-50%) rotate(180deg); }
.spoke-small.spoke-5 { transform: translateX(-50%) rotate(240deg); }
.spoke-small.spoke-6 { transform: translateX(-50%) rotate(300deg); }

.hub-small {
  width: 4px;
  height: 4px;
  background: #294A42;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Arbeitszeit läuft Anzeige */
.working-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #16a34a;
  font-weight: 600;
  font-size: 0.8rem;
  background: rgba(22, 163, 74, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-left: 8px;
}

.working-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #16a34a;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Hero Phone Animation Styles */
.status-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}

.status-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #16a34a;
  font-weight: 600;
}

.wheel-container {
  background: rgba(46, 213, 115, 0.1);
  border-radius: 8px;
  padding: 4px;
}

.time-display {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 8px;
  text-align: center;
  margin-bottom: 8px;
}

.current-time {
  font-size: 0.9rem;
  font-weight: 600;
  color: #294A42;
}

.session-duration {
  font-size: 0.9rem;
  color: #6e6e73;
}

.recent-sessions {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
}

.recent-sessions h4 {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #1c1c1e;
}

.session-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.session-item:last-child {
  border-bottom: none;
}

.session-date {
  font-size: 0.8rem;
  color: #6e6e73;
}

.session-time {
  font-size: 0.8rem;
  font-weight: 500;
  color: #1c1c1e;
}

/* Session Info - Start time and daily counter */
.session-info {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.clock-section,
.start-time,
.daily-counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-label {
  font-size: 0.9rem;
  color: #6e6e73;
  font-weight: 500;
}

.start-timestamp {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1c1c1e;
}

.counter-time {
  font-size: 0.9rem;
  font-weight: 600;
  color: #294A42;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 40px 20px;
  }
  
  .desktop-text {
    display: none;
  }
  
  .mobile-titles {
    display: block;
    margin-bottom: 40px;
  }
  
  .mobile-title {
    font-size: 2.5rem;
  }
  
  .nav-content {
    padding: 0 16px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-mockup-container {
    max-width: 250px;
  }
  
  .hero-placeholder {
    width: 180px;
    height: 360px;
  }
  
  /* Features Showcase Mobile */
  .features-showcase {
    padding: 60px 16px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .feature-card {
    margin-bottom: 16px;
  }
  
  .feature-placeholder {
    width: 140px;
    height: 240px;
  }
  
  .feature-visual {
    height: 280px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  /* CTA Section Mobile */
  .cta-section {
    padding: 60px 20px;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
  }
  
  /* Why Flowcaptain Mobile */
  .why-flowcaptain {
    padding: 60px 20px;
  }
  
  .why-flowcaptain .features-grid {
    grid-template-columns: 1fr;
  }
  
  /* Footer Mobile */
  .landing-footer {
    padding: 30px 20px;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-links a {
    margin: 0;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 30px 16px;
  }
  
  .hero-text h1,
  .mobile-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .hero-text p {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }
  
  .cta-primary,
  .cta-secondary {
    width: auto;
    min-width: 160px;
    max-width: 80%;
    text-align: center;
    align-self: center;
  }
  
  .features-showcase {
    padding: 40px 16px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .feature-content {
    padding: 20px;
  }
  
  .feature-content h3 {
    font-size: 1.2rem;
  }
  
  .why-flowcaptain {
    padding: 40px 16px;
  }
  
  .why-flowcaptain .feature-card {
    padding: 24px;
  }
  
  .cta-section {
    padding: 40px 16px;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
  }
  
  .cookie-banner.show {
    transform: translateY(0);
  }
  
  .beta-content {
    padding: 0 16px;
  }
  
  .hero-text h1,
  .mobile-title {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  /* Mobile Phone Mockup Adjustments */
  .hero-mockup-container {
    max-width: 200px;
  }
  
  .hero-placeholder {
    width: 160px;
    height: 320px;
    padding: 12px;
  }
  
  .hero-placeholder-screen {
    height: 240px;
  }
  
  .feature-placeholder {
    width: 120px;
    height: 220px;
  }
}

@media (max-width: 400px) {
  .hero {
    padding: 20px 12px;
  }
  
  .hero-text h1,
  .mobile-title {
    font-size: 1.8rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  /* Smaller SVG icons on mobile */
  .feature-icon .icon {
    width: 40px;
    height: 40px;
    filter: var(--fc-filter-green);
  }
  
  .why-flowcaptain .feature-card h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 320px) {
  .hero-text h1,
  .mobile-title {
    font-size: 1.6rem;
  }
  
  .cta-primary,
  .cta-secondary {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  /* Very small phone mockup */
  .hero-mockup-container {
    max-width: 150px;
  }
  
  .hero-placeholder {
    width: 140px;
    height: 280px;
  }
}

/* Medium-Large Screens (13-15" Laptops) */
@media (min-width: 1280px) and (max-width: 1399px) {
  .landing-nav-content {
    max-width: 100%;
    padding: 0 4rem;
  }
  
  .hero {
    max-width: 100%;
    padding: 80px 4rem;
    gap: 80px;
  }
  
  .hero-text h1 {
    font-size: 4.8rem;
  }
  
  .hero-text p {
    font-size: 1.35rem;
  }
  
  .features-container,
  .gallery-grid,
  .footer-content {
    max-width: 100%;
    padding: 0 4rem;
  }
  
  .why-flowcaptain {
    padding: 80px 4rem;
  }
}

/* Large Screen Optimizations */
@media (min-width: 1400px) {
  .landing-nav-content {
    max-width: 1600px;
    padding: 0 3rem;
  }
  
  .hero {
    max-width: 1600px;
    padding: 100px 3rem;
    gap: 100px;
  }
  
  .hero-text h1 {
    font-size: 5rem;
  }
  
  .hero-text p {
    font-size: 1.4rem;
    line-height: 1.8;
    max-width: 650px;
  }
  
  .cta-primary,
  .cta-secondary {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .hero-mockup-container {
    max-width: 400px;
  }
  
  .hero-placeholder {
    width: 280px;
    height: 560px;
    padding: 24px;
  }
  
  .features-container {
    max-width: 1600px;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
  }
  
  .section-title {
    font-size: 3.5rem;
  }
  
  .section-subtitle {
    font-size: 1.3rem;
  }
  
  .why-flowcaptain {
    padding: 100px 3rem;
  }
  
  .footer-content {
    max-width: 1600px;
  }
}

@media (min-width: 1800px) {
  .landing-nav-content {
    max-width: 1800px;
    padding: 0 4rem;
  }
  
  .hero {
    max-width: 1800px;
    padding: 120px 4rem;
    gap: 120px;
  }
  
  .hero-text h1 {
    font-size: 5.5rem;
    margin-bottom: 32px;
  }
  
  .hero-text p {
    font-size: 1.5rem;
    margin-bottom: 48px;
    max-width: 700px;
  }
  
  .cta-primary,
  .cta-secondary {
    padding: 18px 36px;
    font-size: 1.2rem;
  }
  
  .hero-mockup-container {
    max-width: 450px;
  }
  
  .hero-placeholder {
    width: 320px;
    height: 640px;
    border-radius: 35px;
  }
  
  .features-container {
    max-width: 1800px;
  }
  
  .features-showcase {
    padding: 120px 4rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
  
  .feature-placeholder {
    width: 180px;
    height: 300px;
  }
  
  .feature-content {
    padding: 32px;
  }
  
  .feature-content h3 {
    font-size: 1.6rem;
  }
  
  .feature-content p {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 4rem;
  }
  
  .section-subtitle {
    font-size: 1.4rem;
    max-width: 800px;
  }
  
  .why-flowcaptain {
    padding: 120px 4rem;
  }
  
  .why-flowcaptain .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  .why-flowcaptain .feature-card {
    padding: 40px;
  }
  
  .footer-content {
    max-width: 1800px;
  }
  
  .landing-footer {
    padding: 60px 4rem;
  }
}

/* Ultra-wide displays */
@media (min-width: 2400px) {
  .landing-nav-content,
  .hero,
  .features-container,
  .footer-content {
    max-width: 2200px;
  }
  
  .hero {
    padding: 140px 6rem;
    gap: 160px;
  }
  
  .hero-text h1 {
    font-size: 6rem;
  }
  
  .hero-text p {
    font-size: 1.6rem;
    max-width: 800px;
  }
  
  .hero-mockup-container {
    max-width: 500px;
  }
  
  .hero-placeholder {
    width: 360px;
    height: 720px;
  }
  
  .features-showcase {
    padding: 140px 6rem;
  }
  
  .section-title {
    font-size: 4.5rem;
  }
}