@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --bg: #ffffff;
  --text: #000000;
  --text-muted: #6b7280;
  --border: #e5e5e5;
  --gray-light: #f9f9f9;
  --black: #000000;
  --white: #ffffff;
  --radius: 0.5rem;
  --transition: 0.2s ease-in-out;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--black);
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  width: 100%;
}

/* Landing page buttons inherit unified styling from style.css */
.btn {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.65rem 1.2rem;
  letter-spacing: 0.02em;
}

/* Hero Section - Apple/Uber Style */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
  position: relative;
}

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

.hero-badge {
  display: inline-block;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.badge-text {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.gradient-text {
  color: var(--white);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-subtitle-wide {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.4;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-reality {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.reality-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.reality-text {
  color: var(--white);
  font-weight: 500;
  opacity: 0.9;
}

.hero-solution {
  background: var(--black);
  color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  text-align: center;
}

.solution-headline {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.solution-text {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Pain Journey Section - Clean Black/White */
.pain-journey {
  background: var(--white);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.pain-timeline {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.pain-step {
  display: flex;
  gap: 1.5rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  border-left: 4px solid var(--black);
  transition: all 0.3s ease;
}

.pain-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
  background: var(--black);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.step-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.pain-stat {
  background: var(--gray-light);
  color: var(--black);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  border: 1px solid var(--border);
}

.pain-callout {
  background: var(--black);
  color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.pain-callout h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* AI Solution Grid - Apple/Uber Clean Style */
.ai-solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.solution-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--black) 0%, #333 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--black);
}

.solution-icon {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  background: var(--gray-light);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.solution-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.solution-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.solution-benefit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--gray-light);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.before {
  color: var(--text-muted);
  font-weight: 600;
  text-decoration: line-through;
}

.after {
  color: var(--black);
  font-weight: 700;
  font-size: 1.1rem;
}

.tech-detail {
  background: var(--gray-light);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  border: 1px solid var(--border);
}

.tech-detail strong {
  color: var(--black);
}

/* Solution Summary - Black/White Theme */
.solution-summary {
  background: var(--black);
  color: var(--white);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
}

.solution-summary h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.solution-summary p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.time-savings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.savings-stat {
  text-align: center;
}

.big-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Enhanced Early Access Section - Apple/Uber Style */
.early-access {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
}

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

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

.early-access h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.early-access-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.6;
}

.urgency-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.urgency-item {
  text-align: center;
}

.urgency-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.urgency-text {
  font-size: 1rem;
  opacity: 0.9;
}

.value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
  text-align: left;
}

.value-prop {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.check-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.early-access-form {
  margin-bottom: 3rem;
}

.form-group {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.form-group input {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--white);
  color: var(--black);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

/* Form group buttons inherit unified styling */
.form-group .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Override for landing page form - use white button style */
.form-group .btn.primary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
}

.form-group .btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.form-note {
  font-size: 0.9rem;
  margin-top: 1rem;
  opacity: 0.9;
}

.highlight {
  color: var(--white);
  font-weight: 700;
}

.success-message,
.error-message {
  display: none;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 500;
}

.success-message {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.error-message {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.testimonial-preview {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-preview blockquote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-preview cite {
  font-size: 1rem;
  opacity: 0.8;
  font-style: normal;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-subtitle-wide {
    font-size: 1rem;
    padding: 0 0.5rem;
    margin-bottom: 1.5rem;
  }

  .workflow-carousel {
    margin-top: 1.5rem !important;
    max-width: 100% !important;
    padding: 0 0.5rem;
  }

  .carousel-header h3 {
    font-size: 1.25rem !important;
    margin-bottom: 0.75rem !important;
  }

  .step-indicators {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .step-indicator {
    flex-direction: column;
    padding: 0.5rem;
    min-width: 60px;
  }

  .step-number {
    font-size: 0.9rem;
    width: 24px;
    height: 24px;
    line-height: 24px;
    margin-bottom: 0.25rem;
  }

  .step-label {
    font-size: 0.75rem;
    text-align: center;
  }

  .carousel-container {
    margin-top: 1rem;
    border-radius: 8px;
  }

  .carousel-slide {
    padding: 1rem;
  }

  .step-info {
    margin-bottom: 1rem;
    text-align: center;
  }

  .step-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .step-info p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .carousel-nav {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-nav.prev {
    left: 5px;
  }

  .carousel-nav.next {
    right: 5px;
  }

  .early-access h2 {
    font-size: 2rem;
  }
  .urgency-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .value-props {
    grid-template-columns: 1fr;
  }
  .form-group {
    max-width: 100%;
  }
  .hero-reality {
    grid-template-columns: 1fr;
  }
  .pain-step {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .solution-benefit {
    flex-direction: column;
    text-align: center;
  }
  .time-savings {
    grid-template-columns: 1fr;
  }
  .workflow-carousel {
    margin-top: 1rem;
  }
  .step-indicators {
    gap: 0.5rem;
  }
  .step-indicator {
    padding: 0.5rem;
  }
  .step-label {
    font-size: 0.75rem;
  }
  .carousel-slide {
    padding: 1rem;
  }
  .step-info {
    margin-bottom: 1rem;
  }
  .carousel-nav {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  .hero-nav {
    padding: 1rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-navigation {
    display: flex;
    gap: 1rem;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .hero-logo {
    width: 28px;
    height: 28px;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
  }

  .feature-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .hero-navigation {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .nav-link.login-link {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
  }

  .brand-name {
    display: none;
  }

  .hero-logo {
    width: 32px;
    height: 32px;
  }

  .workflow-carousel {
    padding: 0 0.25rem;
  }

  .step-indicators {
    gap: 0.25rem;
  }

  .step-indicator {
    padding: 0.375rem;
    min-width: 50px;
  }

  .step-number {
    font-size: 0.8rem;
    width: 20px;
    height: 20px;
    line-height: 20px;
  }

  .step-label {
    font-size: 0.7rem;
  }

  .carousel-nav {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .carousel-nav.prev {
    left: 2px;
  }

  .carousel-nav.next {
    right: 2px;
  }

  .hero-nav {
    padding: 0.75rem;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 0.375rem 0.5rem;
  }
}

/* 4-Step Video Carousel Styles */
.workflow-carousel {
  width: 100%;
  position: relative;
}

.carousel-header {
  text-align: center;
  margin-bottom: 2rem;
}

.step-indicators {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.step-indicator:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.step-indicator.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.step-number {
  background: var(--black);
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-indicator.active .step-number {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--black);
}

.step-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.step-indicator.active .step-label {
  color: var(--black);
}

.carousel-container {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.carousel-slide {
  display: none;
  padding: 2rem;
  align-items: center;
  gap: 2rem;
}

.carousel-slide.active {
  display: flex;
}

.step-info {
  flex: 1;
  min-width: 250px;
}

.step-info h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-info p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  font-size: 1rem;
}

.carousel-slide .video-container {
  flex: 2;
  min-width: 400px;
}

.carousel-slide .video-container video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  z-index: 10;
}

.carousel-nav:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 10px;
}

.carousel-nav.next {
  right: 10px;
}

/* Auto-play Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.play-all-btn {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.play-all-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.play-all-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.progress-bar {
  flex: 1;
  max-width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--white);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* Professional Feature Cards - Apple/Uber Style */
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--black);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 90px;
  height: 60px;
  background: var(--black);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
}

.feature-card:hover .feature-icon {
  transform: scale(1.05);
  background: #333;
}

.icon-text {
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.3;
  word-break: break-word;
  hyphens: auto;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--black);
  line-height: 1.3;
  height: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
  text-align: center;
  min-height: 4.5em;
}

.time-saved {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--gray-light);
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-top: auto;
}

.time-before {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
  white-space: nowrap;
}

.arrow {
  color: var(--black);
  font-weight: bold;
}

.time-after {
  color: var(--black);
  font-weight: 700;
}

/* Mobile Responsive for Feature Cards */
@media (max-width: 1024px) {
  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .feature-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
  
  /* Navigation responsive styles */
  .hero-nav {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .hero-navigation {
    gap: 1.5rem;
  }
  
  .brand-name {
    font-size: 1.25rem;
  }
  
  .hero-logo {
    width: 48px;
    height: 48px;
  }
  
  .nav-link {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .hero-navigation {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .nav-link.login-link {
    width: 100%;
    text-align: center;
  }
  
  .brand-name {
    font-size: 1.125rem;
  }
  
  .hero-logo {
    width: 48px;
    height: 48px;
  }
}

/* Hero Navigation Styles */
.hero-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  padding: 0 1.5rem;
}

.hero-brand {
  display: flex;
  align-items: center;
}

.hero-logo {
  width: 48px;
  height: 48px;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.brand-name {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  white-space: nowrap;
}

.hero-navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

.nav-link.login-link {
  background: var(--white);
  color: var(--black);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  border-bottom: none;
  font-weight: 600;
}

.nav-link.login-link:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer Styling */
.footer-note {
  font-size: 0.85rem;
  line-height: 1.4;
}