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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 66px;
  margin-left: 25px;
}

.logo-img {
  height: 66px;
  width: auto;
  object-fit: contain;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #00A991;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-right: 30px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #00A991 0%, #008A7A 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 169, 145, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #6b7280;
    padding: 0.75rem 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: #00A991;
    color: #00A991;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
  padding: 110px 0 50px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content-wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-content {
  width: 100%;
}

.hero-title {
  font-size: 48px;
  line-height: 1.0;
  font-weight: 700;
  margin-bottom: 28px;
  color: #1f2937;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}

.gradient-text {
  background: linear-gradient(135deg, #00A991 0%, #3EB489 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.3;
  color: #6b7280;
  margin-bottom: 34px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

/* Remove unused stats styles */
.hero-stats {
  display: none;
}

/* App Mockup */
.app-mockup {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 600px;
  margin-left: auto;
}

.mockup-header {
  background: #f9fafb;
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e5e7eb;
}

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #10b981; }

.mockup-url {
  font-size: 14px;
  color: #6b7280;
  padding: 4px 12px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

.mockup-content {
    padding: 0;
    background-color: #f9fafb;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    overflow: hidden;
}

.grid-preview {
    margin-bottom: 2rem;
}

.grid-header {
    display: grid;
    grid-template-columns: 40px 1fr 100px 80px 120px;
    gap: 1rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px 8px 0 0;
    border: 1px solid #e5e7eb;
    font-weight: 600;
    font-size: 0.9rem;
    color: #374151;
}

.grid-row {
    display: grid;
    grid-template-columns: 40px 1fr 100px 80px 120px;
    gap: 1rem;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-top: none;
    align-items: center;
}

.grid-row:last-child {
    border-radius: 0 0 8px 8px;
}

.grid-cell {
    font-size: 0.9rem;
}

.status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.status.hot {
    background: #fef2f2;
    color: #dc2626;
}

.status.warm {
    background: #fffbeb;
    color: #d97706;
}

.status.cold {
    background: #f0f9ff;
    color: #2563eb;
}

.ai-score {
    color: #00A991;
    font-weight: 600;
}

.ai-score.green {
    color: #3EB489;
}

/* Features Section */
.features {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #00A991;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00A991 0%, #008A7A 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6b7280;
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background-color: white;
}

.steps-container {
  max-width: 1000px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.step-item {
  display: flex;
  gap: 24px;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background-color: #3EB489;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.step-description {
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 34px;
}

.step-visual {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
}

/* Import Visual */
.import-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.step-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.connection-or {
  background-color: #f3f4f6;
  color: #6b7280;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.arrow {
  color: #3EB489;
  font-size: 24px;
  font-weight: bold;
}

/* Tags Visual */
.tags-visual {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag {
  background-color: #e0f2fe;
  color: #0369a1;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
}

/* AI Insights Visual */
.ai-insights {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.brain-icon {
  font-size: 32px;
}

.insight-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insight-card {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
}

.insight-metric {
  font-size: 20px;
  font-weight: 600;
  color: #3EB489;
}

.insight-label {
  font-size: 14px;
  color: #6b7280;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

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

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

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

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-tagline {
    color: #9ca3af;
    margin-top: 1rem;
}

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

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #00A991;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background-color: #f9fafb;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border: 2px solid #3EB489;
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #3EB489;
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 34px;
}

.pricing-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 28px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 700;
  color: #3EB489;
  margin-bottom: 8px;
}

.pricing-price span {
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
}

.pricing-description {
  font-size: 16px;
  color: #6b7280;
}

.pricing-features {
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-feature {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.feature-check {
  width: 20px;
  height: 20px;
  stroke: #3EB489;
  stroke-width: 2;
  margin-right: 12px;
  flex-shrink: 0;
}

.pricing-enterprise {
  margin-top: 48px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.enterprise-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.enterprise-content p {
  font-size: 16px;
  color: #6b7280;
}

/* Screenshots Section */
.screenshots {
  padding: 60px 0;
  background-color: #f9fafb;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 48px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.screenshot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.screenshot-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 34px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
  height: auto;
}

.screenshot-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 800px;
}

.screenshot-title-wrapper {
  margin-bottom: 20px;
}

.screenshot-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1f2937;
}

.screenshot-description {
  font-size: 16px;
  color: #6b7280;
  max-width: 90%;
  line-height: 1.5;
}

/* CRM Grid - Full Width Section */
.crm-showcase {
  background: white;
  padding: 0;
  margin: 0;
  width: 100%;
  overflow-x: auto;
}

/* AI Notification */
.ai-notification {
  padding: 12px 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid #e5e7eb;
}

.ai-bubble {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  padding: 10px 16px;
  border-radius: 8px;
  border-left: 4px solid #3EB489;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ai-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.ai-text {
  color: #065f46;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

/* CRM Grid Styles */
.crm-grid {
  width: 100%;
  background: white;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.crm-grid-header {
  display: flex;
  background: #f9fafb;
  border-bottom: 2px solid #e5e7eb;
  position: sticky;
  top: 8px;
  z-index: 10;
}

.crm-grid-row {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  background: white;
  transition: background-color 0.15s ease;
}

.crm-grid-row:hover {
  background: #f9fafb;
}

.crm-cell {
  padding: 12px 16px;
  font-size: 14px;
  border-right: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  min-height: 48px;
  overflow: hidden;
}

.crm-cell:first-child {
  min-width: 60px;
  max-width: 60px;
  justify-content: center;
  background: #f9fafb;
  font-weight: 600;
  color: #6b7280;
}

.crm-cell:nth-child(2) {
  min-width: 200px;
  flex: 1;
}

.crm-cell:nth-child(3) {
  min-width: 120px;
  width: 120px;
}

.crm-cell:nth-child(4) {
  min-width: 250px;
  width: 250px;
}

.crm-cell:nth-child(5) {
  min-width: 120px;
  width: 120px;
}

.crm-cell:nth-child(6) {
  min-width: 150px;
  width: 150px;
}

.crm-cell:nth-child(7) {
  min-width: 180px;
  width: 180px;
}

.crm-cell:nth-child(8) {
  min-width: 150px;
  width: 150px;
}

.crm-cell:nth-child(9) {
  min-width: 120px;
  width: 120px;
}

.crm-grid-header .crm-cell {
  font-weight: 600;
  color: #4b5563;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #f9fafb;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.contact-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #3EB489;
  color: white;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-name {
  font-weight: 500;
  color: #1f2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.status {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.status.new {
  background: #dbeafe;
  color: #1d4ed8;
}

/* AI Assistant */
.ai-assistant {
  padding: 16px;
  background: #f0fdf4;
  border-top: 1px solid #e5e7eb;
}

.ai-bubble {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: white;
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 4px solid #3EB489;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ai-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.ai-text {
  color: #065f46;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 40px 24px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .app-mockup {
        max-width: 100%;
        margin: 0;
    }
    
    .nav-menu {
        display: none;
}

.nav-actions {
  display: none;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .step:nth-child(even) .step-visual {
        order: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
      grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
      transform: none;
      order: -1;
    }
    
    .pricing-enterprise {
      flex-direction: column;
      text-align: center;
    }
    
    .enterprise-content {
      margin-bottom: 34px;
    }

    .screenshots-grid {
      grid-template-columns: 1fr;
    }
    
    .screenshot-item {
      max-width: 500px;
      margin: 0 auto;
    }

    .steps-container {
      gap: 48px;
    }

    .step-item {
      flex-direction: column;
    }

    .step-number {
      width: 40px;
      height: 40px;
      font-size: 20px;
    }

    .step-visual {
      padding: 16px;
    }

    .import-visual {
      flex-direction: column;
      gap: 16px;
    }

    .arrow {
      transform: rotate(90deg);
    }
}

@media (max-width: 1400px) {
  .hero-title {
    font-size: 44px;
  }
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 38px;
    white-space: normal;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-content-wrapper {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 30px 0 15px 0;
    min-height: 280px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.1;
    white-space: normal;
  }
  
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
  }

  .hero-content-wrapper {
    padding: 0 20px;
  }
  
  .crm-grid {
    font-size: 12px;
  }
  
  .crm-cell {
    padding: 8px 12px;
    min-height: 40px;
  }
  
  .contact-avatar {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
  
  .ai-notification {
    padding: 8px 16px;
  }
  
  .ai-bubble {
    padding: 8px 12px;
  }

  .import-visual {
    flex-direction: column;
    gap: 12px;
  }

  .arrow {
    transform: rotate(90deg);
  }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.app-mockup {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
} 

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: 15px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 3px;
  background: #6b7280;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.mobile-menu-overlay.active {
  display: block;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 80px 0 20px 0;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  padding: 0 24px;
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #e5e7eb;
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: #00A991;
}

.mobile-nav-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-actions .btn-secondary,
.mobile-nav-actions .btn-primary {
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
}

/* Mobile Responsive Styles */
@media (max-width: 1400px) {
  .nav-menu {
    display: none;
  }
  
  .nav-actions {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0 30px 0;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .logo {
    margin-left: 15px;
  }
  
  .mobile-menu-btn {
    margin-right: 10px;
  }
}

/* Ensure active mobile menu visible */
.mobile-menu.active { right: 0 !important; }

