/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    /* Colors */
    --primary: #0ea5e9;
    --primary-foreground: #ffffff;
    --accent: #f59e0b;
    --accent-foreground: #1f2937;
    --background: #ffffff;
    --foreground: #0f172a;
    --muted: #f8fafc;
    --muted-foreground: #64748b;
    --card: #ffffff;
    --card-foreground: #0f172a;
    --border: #e2e8f0;
  
    /* Typography */
    --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
    /* Spacing */
    --container-padding: 1.5rem;
    --section-padding: 5rem 0;
  }
  
  body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--foreground);
    background: linear-gradient(135deg, var(--background) 0%, var(--muted) 30%, var(--card) 100%);
    min-height: 100vh;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
  }
  
  /* Header */
  .header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
  }
  
  .logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
  }
  
  .company-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
  }
  
  .badge {
    background: var(--muted);
    color: var(--muted-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    display: none;
  }
  
  @media (min-width: 640px) {
    .badge {
      display: block;
    }
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding);
  }
  
  .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  }
  
  .hero-content {
    position: relative;
    display: grid;
    gap: 3rem;
    align-items: center;
    max-width: 1024px;
    margin: 0 auto;
  }
  
  @media (min-width: 1024px) {
    .hero-content {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .hero-badge {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-foreground);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
  }
  
  .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-wrap: balance;
  }
  
  @media (min-width: 1024px) {
    .hero-title {
      font-size: 3rem;
    }
  }
  
  .title-accent {
    color: var(--primary);
    display: block;
  }
  
  .hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .stat-card {
    text-align: center;
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
  }
  
  .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
  }
  
  .stat-number.accent {
    color: var(--accent);
  }
  
  .stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  /* Hero Image */
  .hero-image {
    position: relative;
  }
  
  .image-container {
    aspect-ratio: 4 / 3;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  
  .image-container:hover img {
    transform: scale(1.05);
  }
  
  .floating-icon {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 6rem;
    height: 6rem;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-foreground);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
  }
  
  /* Company Information */
  .company-info {
    padding: var(--section-padding);
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .section-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
  }
  
  .info-grid {
    display: grid;
    gap: 2rem;
    max-width: 1024px;
    margin: 0 auto;
  }
  
  @media (min-width: 768px) {
    .info-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .info-card {
    background: var(--card);
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
  }
  
  .info-card:hover {
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
  }
  
  .card-content {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
  }
  
  .card-icon.primary {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
  }
  
  .card-icon.accent {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
  }
  
  .info-card:hover .card-icon.primary {
    background: rgba(14, 165, 233, 0.2);
  }
  
  .info-card:hover .card-icon.accent {
    background: rgba(245, 158, 11, 0.2);
  }
  
  .card-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .card-title {
    font-size: 1.125rem;
    font-weight: 600;
  }
  
  .card-value {
    color: var(--card-foreground);
    font-weight: 500;
    line-height: 1.6;
  }
  
  .card-value.mono {
    font-family: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", monospace;
    font-size: 1.125rem;
  }
  
  /* Footer */
  .footer {
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    background: rgba(248, 250, 252, 0.3);
    padding: 3rem 0;
  }
  
  .footer-content {
    text-align: center;
    max-width: 1024px;
    margin: 0 auto;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-icon {
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
  }
  
  .footer-name {
    font-weight: 600;
    font-size: 1.125rem;
  }
  
  .footer-tagline {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
  }
  
  .footer-copyright {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    :root {
      --container-padding: 1rem;
      --section-padding: 3rem 0;
    }
  
    .hero-title {
      font-size: 2rem;
    }
  
    .section-title {
      font-size: 1.5rem;
    }
  
    .stats-grid {
      gap: 1rem;
    }
  
    .floating-icon {
      width: 4rem;
      height: 4rem;
      bottom: -1rem;
      right: -1rem;
    }
  
    .floating-icon svg {
      width: 32px;
      height: 32px;
    }
  }
  