  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
    background-color: #fafafa;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 20px);
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Header */
  .header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 18px;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
  }
  
  .logo img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
  }
  
  .nav {
    display: flex;
    gap: 32px;
    align-items: center;
  }
  
  .nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: -0.01em;
  }
  
  .nav-link:hover {
    color: #1a1a1a;
  }
  
  .nav-link:focus-visible {
    outline: 2px solid #0066ff;
    outline-offset: 4px;
    border-radius: 4px;
  }
  
  .btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
    letter-spacing: -0.01em;
  }
  
  .btn-secondary {
    color: #666;
    background: transparent;
  }
  
  .btn-secondary:hover {
    color: #1a1a1a;
  }
  
  .btn-primary {
    background: #0066ff;
    color: white;
  }
  
  .btn-primary:hover {
    background: #0052cc;
    transform: translateY(-1px);
  }
  
  .btn:focus-visible,
  button:focus-visible {
    outline: 2px solid #0066ff;
    outline-offset: 4px;
    border-radius: 8px;
  }
  
  .mobile-menu-toggle:focus-visible,
  .mobile-menu-close:focus-visible,
  .language-btn:focus-visible {
    outline: 2px solid #0066ff;
    outline-offset: 4px;
    border-radius: 4px;
  }
  
  /* Hero Section */
  .hero {
    padding: 60px 0;
  }
  
  .hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }
  
  .hero-text {
    text-align: left;
    min-width: 0;
  }
  
  .hero-video {
    min-width: 0;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
  }
  
  .hero p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #666;
    margin-bottom: 40px;
    line-height: 1.5;
    letter-spacing: -0.01em;
  }
  
  .hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    align-items: center;
  }
  
  .no-credit {
    font-size: 14px;
    color: #999;
    margin-top: 8px;
  }
  
  .hero-video {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  .video-card {
    background: #fff;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    width: fit-content;
    max-height: 600px;
    box-sizing: border-box;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .video-card video {
    max-width: 100%;
    max-height: 580px;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: contain;
  }
  
  /* Video Section */
  .video-section {
    padding: 60px 0;
    background: #fff;
  }
  
  .video-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  .video-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: -0.01em;
  }
  
  video {
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  }
  
  /* Features Section */
  .features {
    padding: 80px 0;
    background: #f8f9fa;
    scroll-margin-top: 80px;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
  }
  
  .feature-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
    background: #0066ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    font-size: 24px;
  }
  
  .feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
    letter-spacing: -0.01em;
  }
  
  .feature-card p {
    color: #666;
    line-height: 1.5;
    letter-spacing: -0.01em;
  }
  
  /* Mobile menu */
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1a1a1a;
  }
  
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
  }
  
  .mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 280px;
    max-width: 320px;
    width: 75%;
    height: 100%;
    background: white;
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  
  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1a1a1a;
  }
  
  .mobile-menu .nav-link {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
  }
  
  .mobile-menu .btn {
    margin-top: 20px;
    text-align: center;
  }
  
  /* Language Selector */
  .language-selector {
    position: relative;
    display: inline-block;
  }
  
  .language-btn {
    background: none;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    transition: all 0.2s;
  }
  
  .language-btn:hover {
    border-color: #0066ff;
    color: #1a1a1a;
  }
  
  .language-btn .arrow {
    font-size: 10px;
    transition: transform 0.2s;
  }
  
  .language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    z-index: 1000;
    display: none;
    margin-top: 4px;
  }
  
  .language-dropdown.show {
    display: block;
  }
  
  .language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #666;
    transition: background-color 0.2s;
    border-bottom: 1px solid #f5f5f5;
  }
  
  .language-option:last-child {
    border-bottom: none;
  }
  
  .language-option:hover {
    background-color: #f8f9fa;
    color: #1a1a1a;
  }
  
  .language-option.active {
    background-color: #f0f4ff;
    color: #0066ff;
    font-weight: 600;
  }
  
  .language-option span:first-child {
    font-size: 16px;
  }
  
  /* Demo Page Styles */
  .main-content {
    padding: 60px 0;
    background: #fff;
    text-align: center;
  }
  
  .demo-container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .demo-header {
    margin-bottom: 40px;
    text-align: center;
  }

.demo-cta {
  margin-top: 40px;
  text-align: center;
}

.demo-cta p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.demo-cta .btn {
  font-size: 18px;
  padding: 16px 32px;
}
  
  .demo-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
  }
  
  .demo-header p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Pricing Page Styles */
  .pricing-section h1 {
    font-size: clamp(2rem, 5vw, 3rem) !important;
  }
  
  .pricing-section > .container > div:first-child p {
    font-size: clamp(1rem, 2.5vw, 1.25rem) !important;
  }
  
  .demo-image {
    margin: 40px 0;
  }
  
  .demo-image img {
    max-width: 90%;
    max-height: 70vh;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  
  /* Pricing Grid */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  
  /* Professional Plan Featured Style */
  .pricing-plan-featured {
    transform: scale(1.05);
  }
  
  /* Responsive - Desktop First Approach */
  
  /* Large Tablets and Small Laptops (1024px - 1200px) */
  @media (max-width: 1200px) {
    .pricing-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    
    .hero-layout {
      gap: 40px;
    }
    
    .hero h1 {
      font-size: clamp(2.5rem, 4vw, 3.5rem);
    }
    
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
    
    .video-card {
      max-width: 100%;
      max-height: 550px;
      width: fit-content;
    }
    
    .video-card video {
      max-height: 530px;
    }
    
    .logo img {
      height: 38px;
      max-width: 170px;
    }
  }
  
  /* Small Laptops (up to 1400px) - dla MacBook 12" */
  @media (max-width: 1400px) {
    .hero-layout {
      gap: 32px;
    }
    
    .video-card {
      max-width: 100%;
      max-height: 500px;
      padding: 6px;
      box-sizing: border-box;
      overflow: hidden;
      width: fit-content;
    }
    
    .video-card video {
      max-width: 100%;
      max-height: 480px;
      height: auto;
      object-fit: contain;
    }
    
    .hero-video {
      min-width: 0;
      overflow: hidden;
      max-height: 500px;
    }
    
    .logo img {
      height: 36px;
      max-width: 160px;
    }
  }
  
  /* MacBook 12" and similar small laptops (up to 1440px) */
  @media (max-width: 1440px) {
    .hero-layout {
      gap: clamp(24px, 3vw, 40px);
    }
    
    .container {
      padding: 0 clamp(16px, 3vw, 24px);
    }
    
    .video-card {
      max-width: 100%;
      max-height: 550px;
      padding: clamp(4px, 1vw, 8px);
      overflow: hidden;
      width: fit-content;
    }
    
    .video-card video {
      max-height: 530px;
    }
    
    .hero-video {
      max-height: 550px;
      overflow: hidden;
    }
  }
  
  /* Tablets (768px - 1024px) */
  @media (max-width: 1024px) {
    .pricing-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    
    .pricing-plan-featured {
      transform: scale(1.02);
    }
    
    .hero-layout {
      gap: 32px;
    }
    
    .hero h1 {
      font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .hero p {
      font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    }
    
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    
    .feature-card {
      padding: 24px;
    }
    
    .demo-header h1 {
      font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .container {
      padding: 0 clamp(20px, 3vw, 24px);
    }
  }
  
  /* Mobile and Small Tablets (up to 768px) */
  @media (max-width: 768px) {
    .pricing-plan-featured {
      transform: scale(1);
    }
    
    .hero-layout {
      grid-template-columns: 1fr;
      gap: 32px;
      text-align: center;
    }
    
    .hero-text {
      text-align: center;
    }
    
    .hero h1 {
      font-size: clamp(1.75rem, 6vw, 2.5rem);
      margin-bottom: 20px;
    }
    
    .hero p {
      font-size: clamp(1rem, 4vw, 1.2rem);
      margin-bottom: 32px;
    }
    
    .hero-buttons {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }
    
    .hero {
      padding: 40px 0;
    }
    
    .nav {
      display: none;
    }
    
    .language-selector {
      display: none;
    }
    
    .mobile-menu-toggle {
      display: block;
    }
    
    .header-content {
      justify-content: space-between;
    }
    
    .header {
      padding: 12px 0;
    }
    
    .video-card {
      max-width: 100%;
      max-height: 400px;
      padding: 6px;
      box-sizing: border-box;
      overflow: hidden;
      width: fit-content;
    }
    
    .video-card video {
      max-width: 100%;
      max-height: 380px;
      height: auto;
      display: block;
      object-fit: contain;
    }
    
    .hero-video {
      width: 100%;
      max-height: 400px;
      overflow: hidden;
    }
    
    .logo img {
      height: 32px;
      width: auto;
      max-width: 140px;
    }
    
    .demo-header h1 {
      font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .demo-image img {
      max-width: 95%;
    }
    
    .pricing-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .features-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    
    .features {
      padding: 60px 0;
    }
    
    .feature-card {
      padding: 24px;
    }
    
    .container {
      padding: 0 16px;
    }
    
    /* Footer responsive */
    .footer {
      padding: 32px 0 !important;
    }
    
    .footer-content {
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 24px !important;
    }
    
    .footer-links {
      flex-direction: column !important;
      align-items: stretch !important;
      width: 100% !important;
      gap: 12px !important;
    }
    
    .footer-links > div:first-child {
      margin-right: 0 !important;
      margin-bottom: 8px;
    }
    
    .footer-link {
      width: 100% !important;
      justify-content: center !important;
    }
    
    .footer-copyright {
      margin-top: 24px !important;
      padding-top: 16px !important;
    }
    
    /* CTA section responsive */
    section[style*="padding: 80px"] {
      padding: 60px 0 !important;
    }
    
    section[style*="padding: 80px"] h2 {
      font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
      margin-bottom: 20px !important;
    }
    
    section[style*="padding: 80px"] p {
      font-size: clamp(1rem, 4vw, 1.2rem) !important;
      margin-bottom: 32px !important;
    }
    
    .pricing-section {
      padding: 60px 0 !important;
    }
    
    .pricing-section > .container > div:first-child {
      margin-bottom: 40px !important;
    }
    
    /* Pricing cards responsive */
    .pricing-grid > div {
      padding: 24px !important;
    }
    
    .pricing-grid h3 {
      font-size: 1.25rem !important;
    }
    
    .pricing-grid > div > div:first-of-type {
      font-size: 2rem !important;
    }
  }
  
  /* Small Mobile (up to 480px) */
  @media (max-width: 480px) {
    .hero h1 {
      font-size: clamp(1.5rem, 7vw, 2rem);
    }
    
    .hero p {
      font-size: clamp(0.95rem, 4.5vw, 1.1rem);
    }
    
    .btn {
      padding: 10px 20px;
      font-size: 14px;
    }
    
    .feature-card {
      padding: 20px;
    }
    
    .feature-icon {
      width: 40px;
      height: 40px;
      font-size: 20px;
    }
    
    .container {
      padding: 0 12px;
    }
    
    .logo img {
      height: 32px;
    }
    
    .mobile-menu-content {
      width: 85%;
      min-width: 260px;
    }
  }
  
  /* Very Small Mobile (up to 375px) */
  @media (max-width: 375px) {
    .hero h1 {
      font-size: 1.5rem;
    }
    
    .hero p {
      font-size: 0.95rem;
    }
    
    .container {
      padding: 0 12px;
    }
    
    .btn {
      padding: 10px 16px;
      font-size: 13px;
    }
    
    .cookie-banner {
      font-size: 13px !important;
      padding: 12px !important;
    }
    
    .cookie-banner button {
      margin-left: 8px !important;
      padding: 6px 12px !important;
      font-size: 13px !important;
    }
    
    /* Pricing cards on very small screens */
    .pricing-grid > div {
      padding: 20px !important;
    }
    
    .pricing-grid h3 {
      font-size: 1.1rem !important;
    }
    
    .pricing-grid > div > div:first-of-type {
      font-size: 1.75rem !important;
    }
  }

/* CRM Specific Styles */
/* Demo Banner */
.demo-banner {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: white;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.demo-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.demo-badge {
  background: rgba(255, 255, 255, 0.25);
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.demo-text {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 768px) {
  .demo-banner {
    padding: 10px 0;
  }
  
  .demo-banner-content {
    flex-direction: column;
    gap: 8px;
  }
  
  .demo-text {
    font-size: 13px;
    padding: 0 16px;
  }
}

.crm-container {
  max-width: 1000px;
  margin: 0 auto;
}

.crm-header {
  text-align: center;
  margin-bottom: 40px;
}

.crm-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.demo-label {
  font-size: 1.2rem;
  color: #ff6b6b;
  font-weight: 600;
}

.crm-header p {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Table Styles */
.table-container {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e5e5;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
}

th {
  background-color: #f8f9fa;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

tr:hover {
  background-color: #f8f9fa;
}

/* Mapping Container (for mapme.php) */
.mapping-container {
  max-width: 800px;
  margin: 0 auto;
}

.mapping-header {
  text-align: center;
  margin-bottom: 40px;
}

.mapping-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.mapping-header p {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Form Styles */
.form-container {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e5e5;
}

.form-group {
  margin-bottom: 24px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 14px;
}

input[type="text"], input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  color: #1a1a1a;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

input[type="text"]:focus, input[type="email"]:focus {
  border-color: #0066ff;
  outline: none;
}

.submit-button {
  background: #0066ff;
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.submit-button:hover {
  background: #0052cc;
}

/* CRM Responsive */
@media (max-width: 768px) {
  .crm-header h1 {
    font-size: 2rem;
  }
  
  .mapping-header h1 {
    font-size: 2rem;
  }
  
  .form-container {
    padding: 24px;
  }
  
  .table-container {
    padding: 16px;
    overflow-x: auto;
  }
  
  table {
    font-size: 14px;
  }
  
  th, td {
    padding: 12px 8px;
  }
}

/* Contact Form Modal Styles */
.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.contact-modal-content {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 2001;
  /* Custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: #e0e0e0 transparent;
}

.contact-modal-content::-webkit-scrollbar {
  width: 8px;
}

.contact-modal-content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 0 16px 16px 0;
}

.contact-modal-content::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 4px;
  border: 2px solid white;
}

.contact-modal-content::-webkit-scrollbar-thumb:hover {
  background: #c0c0c0;
}

.contact-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s;
  z-index: 2002;
}

.contact-modal-close:hover {
  background: #f5f5f5;
  color: #1a1a1a;
}

.contact-modal-close:focus-visible {
  outline: 2px solid #0066ff;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .contact-modal-content {
    padding: 24px;
    width: 95%;
    border-radius: 12px;
    max-height: 95vh;
  }
  
  .contact-modal-close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
  }
}

/* Info Modal (Contact, Privacy, Terms) */
.info-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.info-modal-content {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  scrollbar-width: thin;
  scrollbar-color: #e0e0e0 transparent;
}

.info-modal-content::-webkit-scrollbar {
  width: 8px;
}

.info-modal-content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 0 16px 16px 0;
}

.info-modal-content::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 4px;
  border: 2px solid white;
}

.info-modal-content::-webkit-scrollbar-thumb:hover {
  background: #c0c0c0;
}

.info-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s;
  z-index: 2002;
}

.info-modal-close:hover {
  background: #f5f5f5;
  color: #1a1a1a;
}

.info-modal-close:focus-visible {
  outline: 2px solid #0066ff;
  outline-offset: 2px;
}

.info-modal-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.info-modal-contact {
  margin-top: 16px;
}

.info-modal-logo {
  margin-bottom: 20px;
}

.info-modal-logo img {
  height: 120px;
  width: auto;
  display: block;
}

.info-modal-company {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 16px 0;
}

.info-modal-address {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.info-modal-email {
  color: #666;
  font-size: 15px;
  margin: 0;
}

.info-modal-email strong {
  color: #1a1a1a;
  margin-right: 8px;
}

.info-modal-email a {
  color: #0066ff;
  text-decoration: none;
}

.info-modal-email a:hover {
  text-decoration: underline;
}

.info-modal-text {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 16px;
}

.info-modal-text p {
  margin: 0 0 16px 0;
}

.info-modal-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .info-modal-content {
    padding: 24px;
    width: 95%;
    border-radius: 12px;
    max-height: 95vh;
  }
  
  .info-modal-close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
  }
  
  .info-modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
}

/* Footer Styles */
.footer {
  background: #0f0f0f;
  color: #fff;
  padding: 60px 0 40px;
  margin-top: 80px;
  border-top: 1px solid #2a2a2a;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: -0.01em;
}

.footer-brand p {
  color: #999;
  font-size: 15px;
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.footer-legal-link {
  color: #999;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-legal-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-legal-separator {
  color: #666;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.footer-links > div:first-child {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 500;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid #333;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.02);
  font-size: 14px;
}

.footer-link:hover {
  border-color: #0066ff;
  background: rgba(0, 102, 255, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

.footer-link svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.footer-copyright {
  border-top: 1px solid #2a2a2a;
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
}

.footer-copyright p {
  color: #666;
  font-size: 13px;
  margin: 0;
  letter-spacing: 0.01em;
}

/* Features Section Header */
.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.features-header p {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.cta-section .btn {
  font-size: 18px;
  padding: 16px 32px;
}

/* Header Logo and Language */
.logo img {
  height: 48px;
  flex-shrink: 0;
}

.language-btn span:first-child,
.language-option span:first-child {
  font-size: 18px;
}

.mobile-menu-language-section {
  border-top: 1px solid #e5e5e5;
  padding: 12px 0;
  margin: 12px 0;
}

.mobile-menu-language-label {
  font-size: 14px;
  color: #999;
  margin-bottom: 8px;
}

.mobile-menu-language-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-language-list .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu-language-list .nav-link.active {
  color: #0066ff;
  font-weight: 600;
}

.mobile-menu-language-list .nav-link span:first-child {
  font-size: 16px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  color: #fff;
  padding: 20px;
  z-index: 2000;
  font-size: 14px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  border-top: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner span {
  color: #e0e0e0;
  line-height: 1.5;
}

.cookie-banner button {
  margin-left: 0;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  background: #0066ff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
}

.cookie-banner button:hover {
  background: #0052cc;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
}

.cookie-banner button:active {
  transform: translateY(0);
}

/* Contact Form Styles */
.contact-modal h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.contact-modal p {
  color: #666;
  margin-bottom: 32px;
}

.contact-form-group {
  margin-bottom: 20px;
}

.contact-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a1a1a;
}

.contact-form-group input[type="text"],
.contact-form-group input[type="email"],
.contact-form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
  color: #1a1a1a;
  transition: border-color 0.2s;
}

.contact-form-group input[type="text"]:focus,
.contact-form-group input[type="email"]:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.contact-form-group input[type="text"]::placeholder,
.contact-form-group input[type="email"]::placeholder,
.contact-form-group textarea::placeholder {
  color: #999;
}

.contact-form-group textarea {
  resize: vertical;
}

.contact-form-privacy {
  margin-bottom: 24px;
}

.contact-form-privacy label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.contact-form-privacy input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
}

.contact-form-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

#formMessage {
  margin-top: 16px;
  display: none;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
}

/* Alert Messages */
.alert {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}

.alert-warning {
  background: #fff3cd;
  color: #856404;
  border-color: #ffeaa7;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

.alert-info {
  text-align: center;
  color: #666;
  padding: 40px;
}

.alert-info-error {
  text-align: center;
  color: #dc3545;
  padding: 40px;
}

.alert-info-small {
  text-align: center;
  color: #666;
  padding: 20px;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: #fafafa;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.pricing-header p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #333;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.pricing-grid {
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.pricing-card-free {
  border: 2px solid #e5e5e5;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000000;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 16px 0;
  color: #1a1a1a;
}

.pricing-price-free {
  color: #10b981;
}

.pricing-price-starter {
  color: #0066ff;
}

.pricing-price-enterprise {
  color: #1a1a1a;
  font-size: 2rem;
}

.pricing-period {
  color: #1a1a1a;
  font-size: 14px;
  margin-bottom: 32px;
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #1a1a1a;
  font-weight: 600;
}

.pricing-features-featured li {
  border-bottom-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-weight: 600;
}

.pricing-card-featured {
  background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
  color: white;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.3);
}

.pricing-card-featured h3,
.pricing-card-featured .pricing-price {
  color: #ffffff;
  font-weight: 700;
}

.pricing-card-featured .pricing-period {
  color: #ffffff;
  font-weight: 600;
}

.pricing-badge {
  text-align: center;
  margin-bottom: 8px;
}

.pricing-badge span {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
  display: block;
}

.pricing-card-free .btn {
  border: 2px solid #10b981;
  color: #10b981;
}

.pricing-card-featured .btn {
  background: white;
  color: #0066ff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 30px;
    margin-top: 60px;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-links {
    width: 100%;
  }
  
  .footer-link {
    width: 100%;
    justify-content: flex-start;
  }
  
  .footer-copyright {
    margin-top: 30px;
    padding-top: 20px;
  }
  
  .cookie-banner {
    padding: 16px;
    gap: 12px;
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner button {
    width: 100%;
    max-width: 200px;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-section h2 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin-bottom: 20px;
  }
  
  .cta-section p {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 32px;
  }
}
