/* 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 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.btn-primary.large, .btn-secondary.large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 24px;
}

.nav-brand h2 {
    color: #3b82f6;
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    color: #666;
}

.nav-links a.btn-primary {
    color: #ffffff;
}

.nav-links a:hover {
    color: #333
}

.nav-links a.btn-primary:hover {
    color: #999;
}

.nav-mobile {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    background: linear-gradient(135deg, #1a1a1a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.hero-image-placeholder {
    width: 500px;
    height: 500px;
}

.hero-image-placeholder img {
    width: 140%;
    margin-left: 70px;
    object-fit: cover;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.875rem;
    font-weight: 700;
    color: #3b82f6;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mock-device {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 20px;
    width: 300px;
    height: 400px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.mock-screen {
    background: white;
    border-radius: 8px;
    height: 100%;
    padding: 16px;
}

.mock-content {
    height: 100%;
}

.mock-header {
    background: #f3f4f6;
    height: 40px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.mock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: 200px;
}

.mock-card {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 8px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

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

.section-header h2 {
    color: #1a1a1a;
}

.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 ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8fafc;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    color: #10b981;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.benefit-text h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: #6b7280;
    margin: 0;
}

.benefits-visual {
    display: flex;
    justify-content: center;
}

.benefit-showcase {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.showcase-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.showcase-mock {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    height: 80px;
    width: 200px;
    border-radius: 8px;
    margin: 0 auto;
    overflow: hidden;
}

.showcase-mock:last-child img {
    object-position: 0 0;
}


.showcase-mock img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

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

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

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #374151;
}

.testimonial-author strong {
    color: #1a1a1a;
    display: block;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.875rem;
}

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

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

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

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

.pricing-price {
    margin-top: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.period {
    color: #6b7280;
    font-size: 1rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-feature {
    padding: 0.5rem 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

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

.pricing-card a {
    width: 100%;
    text-align: center;
    display: block;
}

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

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

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #cbd5e1;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

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

.cta-note p {
    color: #94a3b8;
    font-size: 0.875rem;
    margin: 0;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-brand h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #9ca3af;
}

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

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-column a:hover {
    color: #3b82f6;
}

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

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .mock-device {
        width: 250px;
        height: 350px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

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

.hero-text,
.hero-visual,
.feature-card,
.testimonial-card,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Documentation Styles */
.docs-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.docs-hero-content h1 {
    color: white;
    margin-bottom: 1rem;
}

.docs-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.docs-navigation {
    padding: 80px 0;
    background: #f8fafc;
}

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

.docs-nav-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.docs-nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.docs-nav-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.docs-nav-card h3 {
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.docs-nav-card p {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.docs-nav-arrow {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.docs-nav-card:hover .docs-nav-arrow {
    transform: translateX(5px);
}

.docs-quick-start {
    padding: 80px 0;
    background: white;
}

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

.quick-start-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Documentation Page Layout */
.docs-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    min-height: calc(100vh - 200px);
}

.docs-sidebar {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.docs-sidebar h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.docs-nav-list {
    list-style: none;
}

.docs-nav-list li {
    margin-bottom: 0.5rem;
}

.docs-nav-list a {
    color: #6b7280;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.docs-nav-list a:hover,
.docs-nav-list a.active {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    padding-left: 0.75rem;
}

.docs-content {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid #e2e8f0;
}

.docs-content h1 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 1rem;
}

.docs-content h2 {
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
    scroll-margin-top: 120px;
}

.docs-content h3 {
    color: #374151;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    scroll-margin-top: 120px;
}

.docs-content p {
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.docs-content ul,
.docs-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.docs-content li {
    margin-bottom: 0.5rem;
    color: #6b7280;
}

.docs-content code {
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    color: #1e40af;
}

.docs-content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 1.25rem;
}

.docs-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.nav-links a.active {
    color: #3b82f6;
    font-weight: 500;
}


/* Video Section Styling */
  .video-section, .videos-section {
      margin: 30px 0;
      padding: 20px;
      background: #f9f9f9;
      border-radius: 8px;
  }

  .video-container {
      position: relative;
      width: 100%;
      max-width: 560px;
      margin: 0 auto;
  }

  .video-container iframe {
      width: 100%;
      height: auto;
      aspect-ratio: 16/9;
  }

  .video-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 20px;
  }

  .video-item {
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .video-item h4 {
      margin-top: 0;
      color: #333;
  }

  .video-description {
      margin-top: 10px;
      color: #666;
      font-size: 14px;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .video-container iframe {
          height: 250px;
      }

      .video-grid {
          grid-template-columns: 1fr;
      }
  }

  

/* Responsive Documentation */
@media (max-width: 968px) {
    .docs-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 100px;
    }
    
    .docs-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .docs-content {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .docs-nav-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-start-steps {
        grid-template-columns: 1fr;
    }
    
    .docs-content {
        padding: 1.5rem;
    }
}

.image-container img {
    width: 100%;;
} 