    :root {
      --navy-50: #f0f1f8;
      --navy-100: #d9dcea;
      --navy-200: #b3b9d5;
      --navy-300: #8d95c0;
      --navy-400: #6672ab;
      --navy-500: #4f5a96;
      --navy-600: #3f487a;
      --navy-700: #2f365d;
      --navy-800: #1f2440;
      --navy-900: #0f1223;
      --navy-950: #0a0c17;
      
      --gold-50: #fefbea;
      --gold-100: #fdf6c5;
      --gold-200: #fcec8c;
      --gold-300: #fae353;
      --gold-400: #f9d92a;
      --gold-500: #f5c811;
      --gold-600: #d9a60a;
      --gold-700: #b4800b;
      --gold-800: #936511;
      --gold-900: #7a5214;
      --gold-950: #432c07;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      color: var(--navy-900);
      line-height: 1.5;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    
    header {
      width: 100%;
      padding: 1rem;
      border-bottom: 1px solid #e5e7eb;
      background-color: white;
      position: sticky;
      top: 0;
      z-index: 50;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .logo-icon {
      width: 2rem;
      height: 2rem;
      background-color: var(--navy-800);
      color: white;
      border-radius: 9999px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }
    
    .logo-text {
      font-weight: bold;
      font-size: 1.25rem;
      color: var(--navy-900);
    }
    
    nav {
      display: none;
    }
    
    @media (min-width: 768px) {
      nav {
        display: flex;
        align-items: center;
        gap: 1.5rem;
      }
    }
    
    nav a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--navy-700);
      text-decoration: none;
      transition: color 0.2s;
    }
    
    nav a:hover {
      color: var(--navy-900);
    }
    
    nav a.active {
      color: var(--navy-900);
      border-bottom: 2px solid var(--gold-500);
    }
    
    .header-buttons {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 500;
      border-radius: 0.375rem;
      padding: 0.5rem 1rem;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
    }
    
    .btn-sm {
      font-size: 0.875rem;
      padding: 0.375rem 0.75rem;
    }
    
    .btn-lg {
      font-size: 1.125rem;
      padding: 0.75rem 1.5rem;
    }
    
    .btn-primary {
      background-color: var(--gold-500);
      color: var(--navy-900);
    }
    
    .btn-primary:hover {
      background-color: var(--gold-600);
    }
    
    .btn-outline {
      background-color: transparent;
      border: 1px solid var(--navy-800);
      color: var(--navy-800);
    }
    
    .btn-outline:hover {
      background-color: var(--navy-50);
    }
    
    .btn-outline-white {
      background-color: transparent;
      border: 1px solid white;
      color: white;
    }
    
    .btn-outline-white:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }
    
    .login-btn {
      display: none;
    }
    
    @media (min-width: 768px) {
      .login-btn {
        display: flex;
      }
    }
    
    /* Hero Section */
    .hero {
      width: 100%;
      background-color: var(--navy-900);
      color: white;
    }
    
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
    }
    
    @media (min-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    .hero-image {
      position: relative;
      height: 300px;
      overflow: hidden;
    }
    
    @media (min-width: 768px) {
      .hero-image {
        height: 400px;
      }
    }
    
    @media (min-width: 1024px) {
      .hero-image {
        height: 500px;
      }
    }
    
    .hero-image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(15, 18, 35, 0.8), rgba(15, 18, 35, 0.2));
      z-index: 10;
    }
    
    .hero-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .hero-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 2rem;
      background-color: var(--navy-900);
    }
    
    @media (min-width: 768px) {
      .hero-content {
        padding: 3rem;
      }
    }
    
    .hero-content-inner {
      max-width: 600px;
    }
    
    .hero-title {
      font-size: 2.25rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }
    
    @media (min-width: 640px) {
      .hero-title {
        font-size: 3rem;
      }
    }
    
    @media (min-width: 768px) {
      .hero-title {
        font-size: 3.75rem;
      }
    }
    
    .hero-description {
      font-size: 1.125rem;
      color: #d1d5db;
      margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    @media (min-width: 640px) {
      .hero-buttons {
        flex-direction: row;
      }
    }
    
    /* Upload Section */
    .upload-section {
      width: 100%;
      padding: 4rem 1rem;
    }
    
    @media (min-width: 768px) {
      .upload-section {
        padding: 6rem 1.5rem;
      }
    }
    
    @media (min-width: 1024px) {
      .upload-section {
        padding: 8rem 1.5rem;
      }
    }
    
    .upload-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }
    
    @media (min-width: 1024px) {
      .upload-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    .upload-content {
      max-width: 600px;
    }
    
    .upload-title {
      font-size: 1.875rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      color: var(--navy-900);
    }
    
    .uplcol{
      color:#c95b18  !important;
    }
    
    
    
   .data-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    background: #020418;
    height: 50px;
}
.data-preview-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-800);
  margin: 0;
}

.upload-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #f44336;
    color: white;
    font-weight: 500;
    padding: 5px 9px;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: background-color 0.2s;
    font-size: 11px;
    margin-right: 20px;
}

.upload-button:hover {
  background-color: #d32f2f; /* Darker red on hover */
}

.upload-button svg {
  width: 1rem;
  height: 1rem;
}
    
    

/* Video Section Styles */
  .video-section {
    padding: 5rem 1rem;
    background-color: #efefef;
    position: relative;
    overflow: hidden;
  }
  
  .video-content {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 0.75rem;
  }
  
  .section-description {
    font-size: 1.125rem;
    color: var(--navy-600);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .video-container {
    width: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    margin-bottom: 3rem;
    background-color: #000;
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
  }
  
  .feature-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
  }
  
  .video-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .feature-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--gold-100);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--gold-800);
  }
  
  .feature-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 0.5rem;
  }
  
  .feature-text p {
    font-size: 1.125rem;
    color: var(--navy-600);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .section-title {
      font-size: 1.75rem;
    }
    
    .section-description {
      font-size: 1rem;
    }
    
    .video-features {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  }
    
    
    
    
    
    
    
    
    
    
    
    

    @media (min-width: 640px) {
      .upload-title {
        font-size: 2.25rem;
      }
    }
    
    @media (min-width: 768px) {
      .upload-title {
        font-size: 2.5rem;
      }
    }
    
    .upload-description {
      font-size: 1.125rem;
      color: var(--navy-700);
      margin-bottom: 1.5rem;
    }
    
    .upload-area-wrapper {
      position: relative;
    }
    
    .upload-area-bg {
      position: absolute;
      top: 0;
      right: 0;
      width: 80%;
      height: 80%;
      background-color: var(--gold-400);
      opacity: 0.7;
      border-top-left-radius: 1.5rem;
      z-index: -10;
    }
    
    .upload-area-circle {
      position: absolute;
      bottom: -2.5rem;
      left: -2.5rem;
      width: 5rem;
      height: 5rem;
      background-color: var(--navy-800);
      opacity: 0.3;
      border-radius: 9999px;
      z-index: -20;
    }
    
    .upload-area {
      position: relative;
      z-index: 10;
      padding: 1.5rem;
    }
    
    .card {
      background-color: white;
      border-radius: 0.5rem;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    
    .card-content {
      padding: 1.5rem;
    }
    
    .upload-dropzone {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      border: 2px dashed #e5e7eb;
      border-radius: 0.5rem;
      cursor: pointer;
      transition: background-color 0.2s;
    }
    
    .upload-dropzone:hover {
      background-color: #f9fafb;
    }
    
    .upload-dropzone.dragging {
      border-color: var(--gold-500);
      background-color: var(--gold-50);
    }
    
    .upload-icon-wrapper {
      background-color: var(--gold-100);
      padding: 1rem;
      border-radius: 9999px;
      margin-bottom: 1rem;
    }
    
    .upload-icon {
      width: 2rem;
      height: 2rem;
      color: var(--navy-800);
    }
    
    .upload-text {
      font-size: 1.125rem;
      text-align: center;
      color: var(--navy-700);
      margin-bottom: 0.5rem;
    }
    
    .upload-text-highlight {
      font-size: 1rem;
      font-weight: 500;
      color: var(--gold-600);
    }
    
    .upload-input {
      display: none;
    }
    
    .upload-processing {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
    }
    
    .spinner {
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      border: 0.25rem solid #e5e7eb;
      border-top-color: var(--navy-800);
      animation: spin 1s linear infinite;
      margin-bottom: 1rem;
    }
    
    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }
    
    .upload-success {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
    }
    
    .success-icon-wrapper {
      width: 3rem;
      height: 3rem;
      background-color: #ecfdf5;
      border-radius: 9999px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }
    
    .success-icon {
      width: 2rem;
      height: 2rem;
      color: #10b981;
    }
    
    .success-text {
      font-size: 1.125rem;
      color: var(--navy-700);
      margin-bottom: 0.5rem;
    }
    
    .file-name {
      font-size: 0.875rem;
      color: var(--navy-500);
      margin-bottom: 1.5rem;
    }
    
    .success-buttons {
      display: flex;
      gap: 1rem;
    }
    
    /* Pricing Section */
    .pricing-section {
      width: 100%;
      padding: 4rem 1rem;
      background-color: #f9fafb;
      position: relative;
      overflow: hidden;
    }
    
    @media (min-width: 768px) {
      .pricing-section {
        padding: 6rem 1.5rem;
      }
    }
    
    @media (min-width: 1024px) {
      .pricing-section {
        padding: 8rem 1.5rem;
      }
    }
    
    .pricing-circle-1 {
      position: absolute;
      top: -5rem;
      right: -5rem;
      width: 10rem;
      height: 10rem;
      background-color: var(--gold-400);
      opacity: 0.5;
      border-radius: 9999px;
    }
    
    .pricing-circle-2 {
      position: absolute;
      bottom: -5rem;
      left: -5rem;
      width: 10rem;
      height: 10rem;
      background-color: var(--navy-800);
      opacity: 0.3;
      border-radius: 9999px;
    }
    
    .pricing-content {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .pricing-header {
      max-width: 48rem;
      margin-bottom: 1.5rem;
    }
    
    .pricing-title {
      font-size: 1.875rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 0.5rem;
      color: var(--navy-900);
    }
    
    @media (min-width: 640px) {
      .pricing-title {
        font-size: 2.25rem;
      }
    }
    
    @media (min-width: 768px) {
      .pricing-title {
        font-size: 3rem;
      }
    }
    
    .pricing-description {
      font-size: 1.25rem;
      color: var(--navy-700);
    }
    
    .pricing-card {
      width: 100%;
      max-width: 60rem;
    }
    
    .security-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.security-icon {
  flex-shrink: 0;
  color: var(--gold-500);
}

.security-text {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .security-guarantee {
    flex-direction: column;
    text-align: center;
  }
}
    
    .pricing-card-header {
      background: linear-gradient(to right, var(--navy-800), var(--navy-700));
      color: white;
      padding: 1.5rem;
      border-top-left-radius: 0.5rem;
      border-top-right-radius: 0.5rem;
      text-align: center;
    }
    
    .pricing-amount {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.875rem;
      font-weight: 700;
    }
    
    .dollar-icon {
      width: 2rem;
      height: 2rem;
      margin-right: 0.5rem;
    }
    
    .pricing-period {
      color: rgba(255, 255, 255, 0.8);
    }
    
    .pricing-card-content {
      padding: 1.5rem;
    }
    
    .pricing-note {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background-color: var(--gold-50);
      padding: 1rem;
      border-radius: 0.375rem;
      margin-bottom: 1rem;
    }
    
    .lightbulb-icon {
      width: 1.5rem;
      height: 1.5rem;
      color: var(--gold-600);
      margin-top: 0.125rem;
    }
    
    .note-content {
      text-align: left;
    }
    
    .note-title {
      font-size: 1rem;
      font-weight: 500;
      color: var(--navy-800);
      margin-bottom: 0.25rem;
    }
    
    .note-description {
      font-size: 0.875rem;
      color: var(--navy-600);
    }
    
    .pricing-footer {
      text-align: center;
      font-size: 1.125rem;
      font-weight: 500;
      color: var(--navy-700);
    }
    
    /* How It Works Section */
    .how-it-works-section {
      width: 100%;
      padding: 4rem 1rem;
      background-color: white;
    }
    
    @media (min-width: 768px) {
      .how-it-works-section {
        padding: 6rem 1.5rem;
      }
    }
    
    @media (min-width: 1024px) {
      .how-it-works-section {
        padding: 8rem 1.5rem;
      }
    }
    
    .how-it-works-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    
    .how-it-works-title {
      font-size: 1.875rem;
      font-weight: 700;
      line-height: 1.2;
      color: var(--navy-900);
    }
    
    @media (min-width: 640px) {
      .how-it-works-title {
        font-size: 2.25rem;
      }
    }
    
    @media (min-width: 768px) {
      .how-it-works-title {
        font-size: 3rem;
      }
    }
    
    .steps-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    @media (min-width: 768px) {
      .steps-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (min-width: 1024px) {
      .steps-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
      }
    }
    
    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .step-icon-wrapper {
      position: relative;
      margin-bottom: 2rem;
    }
    
    .step-icon-circle {
      width: 5rem;
      height: 5rem;
      background-color: var(--navy-800);
      border-radius: 9999px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      position: relative;
      z-index: 10;
    }
    
    .step-icon {
      width: 2.5rem;
      height: 2.5rem;
      color: white;
    }
    
    .step-connector {
      position: absolute;
      top: 2.5rem;
      left: 5rem;
      width: 100%;
      height: 0.125rem;
      background-color: var(--gold-400);
      z-index: -10;
    }
    
    .step-card {
      width: 100%;
      height: 100%;
    }
    
    .step-content {
      padding: 1.5rem;
    }
    
    .step-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: var(--navy-900);
    }
    
    .step-number {
      display: inline-block;
      width: 2rem;
      height: 2rem;
      background-color: var(--gold-100);
      color: var(--navy-800);
      border-radius: 9999px;
      text-align: center;
      margin-right: 0.5rem;
    }
    
    .step-description {
      color: var(--navy-700);
    }
    
    .how-it-works-footer {
      display: flex;
      justify-content: center;
      margin-top: 4rem;
    }
    
    .tagline {
      font-size: 1.25rem;
      font-weight: 500;
      text-align: center;
      padding: 0.75rem 1.5rem;
      background-color: var(--gold-100);
      border-radius: 9999px;
      color: var(--navy-800);
    }
    
    /* Why Choose Section */
    .why-choose-section {
      width: 100%;
      padding: 4rem 1rem;
      background-color: #f9fafb;
      position: relative;
      overflow: hidden;
    }
    
    @media (min-width: 768px) {
      .why-choose-section {
        padding: 6rem 1.5rem;
      }
    }
    
    @media (min-width: 1024px) {
      .why-choose-section {
        padding: 8rem 1.5rem;
      }
    }
    
    .why-choose-circle-1 {
      position: absolute;
      top: 10rem;
      right: 0;
      width: 8rem;
      height: 8rem;
      background-color: var(--gold-400);
      opacity: 0.3;
      border-radius: 9999px;
    }
    
    .why-choose-circle-2 {
      position: absolute;
      bottom: 5rem;
      left: 2.5rem;
      width: 6rem;
      height: 6rem;
      background-color: var(--navy-800);
      opacity: 0.2;
      border-radius: 9999px;
    }
    
    .why-choose-header {
      text-align: center;
      margin-bottom: 4rem;
      position: relative;
      z-index: 10;
    }
    
    .why-choose-title {
      font-size: 1.875rem;
      font-weight: 700;
      line-height: 1.2;
      color: var(--navy-900);
    }
    
    @media (min-width: 640px) {
      .why-choose-title {
        font-size: 2.25rem;
      }
    }
    
    @media (min-width: 768px) {
      .why-choose-title {
        font-size: 3rem;
      }
    }
    
    .features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-bottom: 4rem;
      position: relative;
      z-index: 10;
    }
    
    @media (min-width: 768px) {
      .features-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    .feature-card {
      height: 100%;
      transition: box-shadow 0.3s;
    }
    
    .feature-card:hover {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }
    
    .feature-content {
      padding: 2rem;
    }
    
    .feature-header {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
    }
    
    .feature-icon-wrapper {
      background-color: var(--gold-100);
      padding: 0.75rem;
      border-radius: 0.5rem;
    }
    
    .feature-icon {
      width: 2rem;
      height: 2rem;
      color: var(--navy-800);
    }
    
    .feature-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--navy-900);
    }
    
    .feature-description {
      color: var(--navy-700);
    }
    
    .testimonial-card {
      background: linear-gradient(to right, var(--gold-50), var(--gold-100));
      max-width: 48rem;
      margin: 0 auto;
      position: relative;
      z-index: 10;
    }
    
    .testimonial-content {
      padding: 2rem;
    }
    
    .testimonial-header {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
    }
    
    .quote-icon {
      width: 3rem;
      height: 3rem;
      color: var(--navy-800);
      margin-top: 0.25rem;
    }
    
    .testimonial-text {
      font-size: 1.25rem;
      font-weight: 500;
      font-style: italic;
      margin-bottom: 1rem;
      color: var(--navy-800);
    }
    
    .testimonial-author {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--navy-700);
    }
    
    /* Contact Section */
    .contact-section {
      width: 100%;
      padding: 4rem 1rem;
      background-color: white;
    }
    
    @media (min-width: 768px) {
      .contact-section {
        padding: 6rem 1.5rem;
      }
    }
    
    @media (min-width: 1024px) {
      .contact-section {
        padding: 8rem 1.5rem;
      }
    }
    
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: center;
    }
    
    @media (min-width: 1024px) {
      .contact-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    .contact-content {
      max-width: 600px;
    }
    
    .contact-title {
      font-size: 1.875rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      color: var(--navy-900);
    }
    
    @media (min-width: 640px) {
      .contact-title {
        font-size: 2.25rem;
      }
    }
    
    @media (min-width: 768px) {
      .contact-title {
        font-size: 3rem;
      }
    }
    
    .contact-description {
      font-size: 1.25rem;
      color: var(--navy-700);
      margin-bottom: 1.5rem;
    }
    
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    .contact-icon-wrapper {
      background-color: var(--gold-100);
      padding: 0.75rem;
      border-radius: 9999px;
    }
    
    .contact-icon {
      width: 1.5rem;
      height: 1.5rem;
      color: var(--navy-800);
    }
    
    .contact-label {
      font-size: 0.875rem;
      color: var(--navy-500);
    }
    
    .contact-value {
      font-size: 1.125rem;
      font-weight: 500;
      color: var(--navy-800);
    }
    
    .contact-form-wrapper {
      position: relative;
    }
    
    .contact-form-circle {
      position: absolute;
      top: -2.5rem;
      right: -2.5rem;
      width: 10rem;
      height: 10rem;
      background-color: var(--gold-400);
      opacity: 0.3;
      border-radius: 9999px;
      z-index: -10;
    }
    
    .contact-form {
      position: relative;
      z-index: 10;
    }
    
    .form-group {
      margin-bottom: 1.5rem;
    }
    
    .form-label {
      display: block;
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
      color: var(--navy-800);
    }
    
    .form-input {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #e5e7eb;
      border-radius: 0.375rem;
      outline: none;
      transition: all 0.2s;
    }
    
    .form-input:focus {
      border-color: var(--navy-800);
      box-shadow: 0 0 0 2px rgba(31, 36, 64, 0.2);
    }
    
    .form-textarea {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #e5e7eb;
      border-radius: 0.375rem;
      outline: none;
      transition: all 0.2s;
      resize: vertical;
      min-height: 8rem;
    }
    
    .form-textarea:focus {
      border-color: var(--navy-800);
      box-shadow: 0 0 0 2px rgba(31, 36, 64, 0.2);
    }
    
    /* Footer */
    footer {
      width: 100%;
      padding: 3rem 1rem;
      background-color: var(--navy-900);
      color: white;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
      }
    }
    
    .footer-brand {
      margin-bottom: 1rem;
    }
    
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }
    
    .footer-logo-icon {
      width: 2rem;
      height: 2rem;
      background-color: var(--gold-500);
      color: var(--navy-900);
      border-radius: 9999px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }
    
    .footer-logo-text {
      font-weight: bold;
      font-size: 1.25rem;
    }
    
    .footer-description {
      color: #9ca3af;
    }
    
    .footer-column-title {
      font-weight: 700;
      font-size: 1.125rem;
      margin-bottom: 1rem;
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-link-item {
      margin-bottom: 0.5rem;
    }
    
    .footer-link {
      color: #9ca3af;
      text-decoration: none;
      transition: color 0.2s;
    }
    
    .footer-link:hover {
      color: white;
    }
    
    .footer-bottom {
      border-top: 1px solid var(--navy-800);
      margin-top: 3rem;
      padding-top: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
      }
    }
    
    .footer-copyright {
      color: #9ca3af;
      margin-bottom: 1rem;
    }
    
    @media (min-width: 768px) {
      .footer-copyright {
        margin-bottom: 0;
      }
    }

.footer-social {
    display: flex;
    gap: 1.5rem;
    font-size: 14px;
    font-weight: normal;
    color: #9ca3af;
}

    .social-link {
      color: #9ca3af;
      transition: color 0.2s;
    }
    
    .social-link:hover {
      color: white;
    }
    
    .social-icon {
      width: 1.25rem;
      height: 1.25rem;
    }
    
    /* Mobile responsiveness */
@media (max-width: 768px) {
  .hero-image {
    height: 200px;
    display:none;
  }
}

@media (max-width: 480px) {
  .hero-image {
    height: 150px;
  }
}

/* Data Preview Section */
.data-preview-section {
  width: 100%;
  padding: 4rem 1rem;
  background-color: var(--navy-50);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .data-preview-section {
    padding: 6rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .data-preview-section {
    padding: 8rem 1.5rem;
  }
}

.data-preview-circle-1 {
  position: absolute;
  top: -3rem;
  left: -3rem;
  width: 8rem;
  height: 8rem;
  background-color: var(--gold-400);
  opacity: 0.3;
  border-radius: 9999px;
}

.data-preview-circle-2 {
  position: absolute;
  bottom: -4rem;
  right: -4rem;
  width: 10rem;
  height: 10rem;
  background-color: var(--navy-800);
  opacity: 0.2;
  border-radius: 9999px;
}

.data-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}



/* Updated Pricing Section Styling */
.pricing-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.base-fee {
  font-size: 2.5rem;
  color: white;
}

.plus-sign {
  font-size: 1.75rem;
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.per-line-fee {
  font-size: 2.5rem;
  color: white;
}

.per-line-text {
  font-size: 1.25rem;
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.pricing-examples {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .pricing-examples {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.pricing-example {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.example-icon-wrapper {
  background-color: var(--navy-50);
  padding: 0.75rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.example-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--navy-800);
}

.example-content {
  flex-grow: 1;
}

.example-title {
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.25rem;
}

.example-description {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--navy-900);
  margin-bottom: 0.25rem;
}

.example-calculation {
  font-size: 0.875rem;
  color: var(--navy-600);
}



/* Certification and Submit Button Styling */
.certification-container {
  margin-top: 2rem;
  /*background-color: white; */
  border-radius: 0.375rem;
  padding: 1.5rem;
  /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); */
}

.certification-label {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.certification-checkbox {
  margin-top: 0.25rem;
  margin-right: 0.75rem;
  width: 1.25rem;
  height: 1.25rem;
}

.certification-text {
  color: var(--navy-700);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.submit-button {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  background-color: #2196f3; /* Bright blue color as shown in the image */
  color: white;
  border: none;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-button:hover {
  background-color: #1976d2; /* Slightly darker blue on hover */
}

.submit-button:disabled {
  background-color: #90caf9; /* Lighter blue when disabled */
  cursor: not-allowed;
}

@media (min-width: 1024px) {
  .data-preview-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.data-preview-content {
  position: relative;
  z-index: 10;
}

.data-preview-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--navy-900);
}

@media (min-width: 768px) {
  .data-preview-title {
    font-size: 2.5rem;
  }
}

.data-preview-description {
  font-size: 1.125rem;
  color: var(--navy-700);
  margin-bottom: 2rem;
  max-width: 500px;
}

.data-preview-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .data-preview-features {
    grid-template-columns: 1fr 1fr;
  }
}

.data-preview-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.data-preview-feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold-600);
  margin-top: 0.125rem;
}

.data-preview-feature-text {
  font-size: 1rem;
  color: var(--navy-800);
}

.data-preview-image {
  position: relative;
  z-index: 10;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.data-preview-image img {
  width: 100%;
  display: block;
}

/* Data Items Styling */
.data-preview-items {
  position: relative;
  z-index: 10;
  width: 100%;
}

.data-item {
  background-color: #1e88e5;
  color: white;
  border-radius: 0.375rem;
  padding: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.data-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.data-row-full {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .data-row {
    grid-template-columns: 1fr;
  }
  
  .data-row-full {
    grid-template-columns: 1fr 1fr;
  }
}

.data-label {
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.data-value {
  background-color: white;
  color: var(--navy-800);
  padding: 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


  .login-container {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
  
  .login-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .lightning-bolt {
    color: #f5c811;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: -0.25rem;
  }
  
  .logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #1f2440;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
  }
  
  .logo-text {
    font-weight: bold;
    font-size: 1.5rem;
    color: #0f1223;
  }
  
  .login-header h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #0f1223;
    margin-bottom: 0.5rem;
  }
  
  .login-header p {
    font-size: 0.875rem;
    color: #3f487a;
  }
  
  .login-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .login-card h3 {
    font-size: 1.5rem;
    text-align: center;
    color: #1f2440;
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2440;
    margin-bottom: 0.5rem;
  }
  
  .input-wrapper {
    position: relative;
  }
  
  .input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #6672ab;
  }
  
  .form-input {
    width: 100%;
    height: 3rem;
    padding: 0 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  
  .form-input:focus {
    outline: none;
    border-color: #4f5a96;
    box-shadow: 0 0 0 3px rgba(79, 90, 150, 0.1);
  }
  
  .password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #6672ab;
  }
  
  .password-toggle:hover {
    color: #3f487a;
  }
  
  .form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .checkbox-wrapper {
    display: flex;
    align-items: center;
  }
  
  .checkbox {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
  }
  
  .checkbox-wrapper label {
    font-size: 0.875rem;
    color: #2f365d;
    margin-bottom: 0;
  }
  
  .forgot-link {
    font-size: 0.875rem;
    color: #3f487a;
    text-decoration: none;
    font-weight: 500;
  }
  
  .forgot-link:hover {
    color: #4f5a96;
  }
  
  .submit-btn {
    width: 100%;
    height: 3rem;
    background-color: #f5c811;
    color: #0f1223;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 1.5rem;
  }
  
  .submit-btn:hover {
    background-color: #d9a60a;
  }
  
  .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  .divider {
    position: relative;
    margin: 1.5rem 0;
  }
  
  .divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #d1d5db;
  }
  
  .divider-text {
    background-color: white;
    padding: 0 0.5rem;
    font-size: 0.875rem;
    color: #4f5a96;
    position: relative;
    text-align: center;
  }
  
  .social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .social-btn {
    height: 3rem;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #2f365d;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
  }
  
  .social-btn:hover {
    background-color: #f9fafb;
  }
  
  .signup-link {
    text-align: center;
    font-size: 0.875rem;
    color: #3f487a;
  }
  
  .signup-link a {
    color: #3f487a;
    text-decoration: none;
    font-weight: 500;
  }
  
  .signup-link a:hover {
    color: #4f5a96;
  }
  
  .security-notice {
    text-align: center;
    font-size: 0.75rem;
    color: #4f5a96;
  }
  
  .loading-spinner {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid transparent;
    border-top: 2px solid #0f1223;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  
  
    .login-container {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
  
  .login-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .lightning-bolt {
    color: #f5c811;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: -0.25rem;
  }
  
  .logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #1f2440;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
  }
  
  .logo-text {
    font-weight: bold;
    font-size: 1.5rem;
    color: #0f1223;
  }
  
  .login-header h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #0f1223;
    margin-bottom: 0.5rem;
  }
  
  .login-header p {
    font-size: 0.875rem;
    color: #3f487a;
  }
  
  .login-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .login-card h3 {
    font-size: 1.5rem;
    text-align: center;
    color: #1f2440;
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2440;
    margin-bottom: 0.5rem;
  }
  
  .input-wrapper {
    position: relative;
  }
  
  .input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #6672ab;
  }
  
  .form-input {
    width: 100%;
    height: 3rem;
    padding: 0 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  
  .form-input:focus {
    outline: none;
    border-color: #4f5a96;
    box-shadow: 0 0 0 3px rgba(79, 90, 150, 0.1);
  }
  
  .password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #6672ab;
  }
  
  .password-toggle:hover {
    color: #3f487a;
  }
  
  .form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .checkbox-wrapper {
    display: flex;
    align-items: center;
  }
  
  .checkbox {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
  }
  
  .checkbox-wrapper label {
    font-size: 0.875rem;
    color: #2f365d;
    margin-bottom: 0;
  }
  
  .forgot-link {
    font-size: 0.875rem;
    color: #3f487a;
    text-decoration: none;
    font-weight: 500;
  }
  
  .forgot-link:hover {
    color: #4f5a96;
  }
  
  .submit-btn {
    width: 100%;
    height: 3rem;
    background-color: #f5c811;
    color: #0f1223;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 1.5rem;
  }
  
  .submit-btn:hover {
    background-color: #d9a60a;
  }
  
  .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  .divider {
    position: relative;
    margin: 1.5rem 0;
  }
  
  .divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #d1d5db;
  }
  
  .divider-text {
    background-color: white;
    padding: 0 0.5rem;
    font-size: 0.875rem;
    color: #4f5a96;
    position: relative;
    text-align: center;
  }
  
  .social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .social-btn {
    height: 3rem;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #2f365d;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
  }
  
  .social-btn:hover {
    background-color: #f9fafb;
  }
  
  .signup-link {
    text-align: center;
    font-size: 0.875rem;
    color: #3f487a;
  }
  
  .signup-link a {
    color: #3f487a;
    text-decoration: none;
    font-weight: 500;
  }
  
  .signup-link a:hover {
    color: #4f5a96;
  }
  
  .security-notice {
    text-align: center;
    font-size: 0.75rem;
    color: #4f5a96;
  }
  
  .loading-spinner {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid transparent;
    border-top: 2px solid #0f1223;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  
  
    .dashboard-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem 1rem;
  }

  .account-dashboard {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Header Improvements */
  .dashboard-header {
    margin-bottom: 2rem;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .header-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .header-content {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
  }

  .header-text h1 {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
  }

  .header-text p {
    color: #6b7280;
    font-size: 1.1rem;
  }

  .header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  /* Dashboard Grid */
  .dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  @media (min-width: 1024px) {
    .dashboard-grid {
      grid-template-columns: 1fr 2fr;
    }
  }

  /* Enhanced Stats Card */
  .stats-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }

  .stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #090909, #090909);
  }

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

  .stats-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .stats-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .stats-icon svg {
    width: 2rem;
    height: 2rem;
    color: #d97706;
  }

  .trend-indicator {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
  }

  .trend-neutral {
    background-color: #e5e7eb;
    color: #374151;
  }

  .stats-number-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: #d97706;
    line-height: 1;
  }

  .stats-unit {
    font-size: 1.25rem;
    color: #6b7280;
    font-weight: 500;
  }

  .stats-label {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
  }

  .stats-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
  }

  .pricing-info {
    font-weight: 600;
    color: #059669;
  }

  .separator {
    margin: 0 0.5rem;
    color: #d1d5db;
  }

  .base-fee {
    color: #6b7280;
  }

  .progress-bar {
    background-color: #f3f4f6;
    border-radius: 9999px;
    height: 0.5rem;
    overflow: hidden;
    margin-bottom: 0.5rem;
  }

  .progress-fill {
    background: linear-gradient(90deg, #10b981, #059669);
    height: 100%;
    border-radius: 9999px;
    transition: width 0.3s ease;
  }

  .progress-label {
    font-size: 0.75rem;
    color: #6b7280;
  }

  /* Enhanced Actions Card */
  .actions-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }

  .actions-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #090909, #090909);
  }

  .actions-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .actions-content {
      flex-direction: row;

      justify-content: space-between;
    }
  }

  .actions-text {
    text-align: center;
    flex: 1;
  }

  @media (min-width: 768px) {
    .actions-text {
      text-align: left;
    }
  }

  .actions-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
  }

  .actions-text p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }

  .quick-stats-inline {
    display: flex;
    gap: 2rem;
    justify-content: center;
  }

  @media (min-width: 768px) {
    .quick-stats-inline {
      justify-content: flex-start;
    }
  }

  .inline-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  @media (min-width: 768px) {
    .inline-stat {
      align-items: flex-start;
    }
  }

  .inline-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
  }

  .inline-stat .stat-label {
    font-size: 0.875rem;
    color: #6b7280;
  }

  .actions-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: fit-content;
  }

  @media (min-width: 640px) {
    .actions-buttons {
      flex-direction: row;
    }
  }

  /* Enhanced Orders Section */
  .orders-section {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 2rem;
  }

  .orders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-bottom: 1px solid #e5e7eb;
  }

  .orders-title {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
  }

  .title-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
    color: #6b7280;
  }

  .orders-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .orders-count {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
  }

  .orders-list {
    divide-y: 1px solid #f3f4f6;
  }

  .order-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    transition: all 0.2s ease;
    position: relative;
  }

  @media (min-width: 768px) {
    .order-item {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
  }

  .order-item:hover {
    background-color: #f8fafc;
    transform: translateY(-1px);
  }

  .order-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #10b981, #059669);
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .order-item:hover::before {
    opacity: 1;
  }

  .order-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
  }

  .order-avatar {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  }

  .order-avatar svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #7c3aed;
  }

  .order-details {
    flex: 1;
  }

  .order-details h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
  }

  .order-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
  }

  .order-date {
    display: flex;
    align-items: center;
  }

  .meta-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.25rem;
  }

  .status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    gap: 0.25rem;
  }

  .status-completed {
    background-color: #dcfce7;
    color: #166534;
  }

  .status-icon {
    width: 1rem;
    height: 1rem;
  }

  .order-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: #6b7280;
  }

  .lines-processed {
    font-weight: 600;
    color: #059669;
  }

  .processing-time {
    color: #6b7280;
  }

  .order-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }

  /* Enhanced Summary Stats */
  .summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .stat-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
  }

  .stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transition: height 0.2s ease;
  }

  .stat-card:hover::before {
    height: 4px;
  }

  .primary-stat::before {
    background: linear-gradient(90deg, #090909, #090909);
  }

  .success-stat::before {
    background: linear-gradient(90deg, #090909, #090909);
  }

  .cost-stat::before {
    background: linear-gradient(90deg, #090909, #090909);
  }

  .time-stat::before {
    background: linear-gradient(90deg, #090909, #090909);
  }

  .stat-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .primary-stat .stat-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  }

  .primary-stat .stat-icon svg {
    color: #1d4ed8;
  }

  .success-stat .stat-icon {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  }

  .success-stat .stat-icon svg {
    color: #059669;
  }

  .cost-stat .stat-icon {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
  }

  .cost-stat .stat-icon svg {
    color: #d97706;
  }

  .time-stat .stat-icon {
    background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
  }

  .time-stat .stat-icon svg {
    color: #7c3aed;
  }

  .stat-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .stat-content {
    flex: 1;
  }

  .stat-number {
    font-size: 1.875rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.25rem;
    line-height: 1;
  }

  .stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.25rem;
  }

  .stat-change {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    display: inline-block;
  }

  .stat-change.positive {
    background-color: #dcfce7;
    color: #166534;
  }

  .stat-change.neutral {
    background-color: #f3f4f6;
    color: #6b7280;
  }

  /* Enhanced Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
  }

  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
  }

  .btn:hover::before {
    left: 100%;
  }

  .btn-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
  }

  .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
  }

.btn-primary {
    background: #f5c811;
    /* background: linear-gradient(135deg, #f59e0b, #d97706); */
    color: #000000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}


.btn-primary:hover {
    background: #f4df8a;
    /* background: linear-gradient(135deg, #f59e0b, #d97706); */
    color: #000000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

  .btn-secondary {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .btn-secondary:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .btn-outline {
    background-color: white;
    border: 1px solid #d1d5db;
    color: #6b7280;
  }

  .btn-outline:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
    color: #374151;
    transform: translateY(-1px);
  }

  .btn-danger {
    border-color: #fca5a5;
    color: #dc2626;
  }

  .btn-danger:hover {
    background-color: #fef2f2;
    border-color: #f87171;
  }

  /* Loading Animation */
  @keyframes pulse {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: .5;
    }
  }

  .loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  /* Responsive Design */
  @media (max-width: 640px) {
    .dashboard-section {
      padding: 1rem;
    }
    
    .dashboard-header {
      padding: 1.5rem;
    }
    
    .header-text h1 {
      font-size: 1.875rem;
    }
    
    .stats-card,
    .actions-card {
      padding: 1.5rem;
    }
    
    .order-item {
      padding: 1.5rem;
    }
    
    .orders-header {
      padding: 1.5rem;
    }
  }
  
  
  
  
    .dashboard-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem 1rem;
  }

  .account-dashboard {   
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Header Improvements */
  .dashboard-header {
    margin-bottom: 2rem;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .header-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .header-content {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
  }

  .header-text h1 {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
  }

  .header-text p {
    color: #6b7280;
    font-size: 1.1rem;
  }

  .header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  /* Dashboard Grid */
  .dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  @media (min-width: 1024px) {
    .dashboard-grid {
      grid-template-columns: 1fr 2fr;
    }
  }

  /* Enhanced Stats Card */
  .stats-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }

  .stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #090909, #090909);
  }

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

  .stats-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .stats-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .stats-icon svg {
    width: 2rem;
    height: 2rem;
    color: #d97706;
  }

  .trend-indicator {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
  }

  .trend-neutral {
    background-color: #e5e7eb;
    color: #374151;
  }

  .stats-number-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: #d97706;
    line-height: 1;
  }

  .stats-unit {
    font-size: 1.25rem;
    color: #6b7280;
    font-weight: 500;
  }

  .stats-label {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
  }

  .stats-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
  }

  .pricing-info {
    font-weight: 600;
    color: #059669;
  }

  .separator {
    margin: 0 0.5rem;
    color: #d1d5db;
  }

  .base-fee {
    color: #6b7280;
  }

  .progress-bar {
    background-color: #f3f4f6;
    border-radius: 9999px;
    height: 0.5rem;
    overflow: hidden;
    margin-bottom: 0.5rem;
  }

  .progress-fill {
    background: linear-gradient(90deg, #10b981, #059669);
    height: 100%;
    border-radius: 9999px;
    transition: width 0.3s ease;
  }

  .progress-label {
    font-size: 0.75rem;
    color: #6b7280;
  }

  /* Enhanced Actions Card */
  .actions-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }

  .actions-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #090909, #090909);
  }

  .actions-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .actions-content {
      flex-direction: row;

      justify-content: space-between;
    }
  }

  .actions-text {
    text-align: center;
    flex: 1;
  }

  @media (min-width: 768px) {
    .actions-text {
      text-align: left;
    }
  }

  .actions-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
  }

  .actions-text p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }

  .quick-stats-inline {
    display: flex;
    gap: 2rem;
    justify-content: center;
  }

  @media (min-width: 768px) {
    .quick-stats-inline {
      justify-content: flex-start;
    }
  }

  .inline-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  @media (min-width: 768px) {
    .inline-stat {
      align-items: flex-start;
    }
  }

  .inline-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
  }

  .inline-stat .stat-label {
    font-size: 0.875rem;
    color: #6b7280;
  }

  .actions-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: fit-content;
  }

  @media (min-width: 640px) {
    .actions-buttons {
      flex-direction: row;
    }
  }

  /* Enhanced Orders Section */
  .orders-section {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 2rem;
  }

  .orders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-bottom: 1px solid #e5e7eb;
  }

  .orders-title {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
  }

  .title-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
    color: #6b7280;
  }

  .orders-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .orders-count {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
  }

  .orders-list {
    divide-y: 1px solid #f3f4f6;
  }

  .order-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    transition: all 0.2s ease;
    position: relative;
  }

  @media (min-width: 768px) {
    .order-item {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
  }

  .order-item:hover {
    background-color: #f8fafc;
    transform: translateY(-1px);
  }

  .order-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #10b981, #059669);
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .order-item:hover::before {
    opacity: 1;
  }

  .order-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
  }

  .order-avatar {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  }

  .order-avatar svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #7c3aed;
  }

  .order-details {
    flex: 1;
  }

  .order-details h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
  }

  .order-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
  }

  .order-date {
    display: flex;
    align-items: center;
  }

  .meta-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.25rem;
  }

  .status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    gap: 0.25rem;
  }

  .status-completed {
    background-color: #dcfce7;
    color: #166534;
  }

  .status-icon {
    width: 1rem;
    height: 1rem;
  }

  .order-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: #6b7280;
  }

  .lines-processed {
    font-weight: 600;
    color: #059669;
  }

  .processing-time {
    color: #6b7280;
  }

  .order-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }

  /* Enhanced Summary Stats */
  .summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .stat-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
  }

  .stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transition: height 0.2s ease;
  }

  .stat-card:hover::before {
    height: 4px;
  }

  .primary-stat::before {
    background: linear-gradient(90deg, #090909, #090909);
  }

  .success-stat::before {
    background: linear-gradient(90deg, #090909, #090909);
  }

  .cost-stat::before {
    background: linear-gradient(90deg, #090909, #090909);
  }

  .time-stat::before {
    background: linear-gradient(90deg, #090909, #090909);
  }

  .stat-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .primary-stat .stat-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  }

  .primary-stat .stat-icon svg {
    color: #1d4ed8;
  }

  .success-stat .stat-icon {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  }

  .success-stat .stat-icon svg {
    color: #059669;
  }

  .cost-stat .stat-icon {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
  }

  .cost-stat .stat-icon svg {
    color: #d97706;
  }

  .time-stat .stat-icon {
    background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
  }

  .time-stat .stat-icon svg {
    color: #7c3aed;
  }

  .stat-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .stat-content {
    flex: 1;
  }

  .stat-number {
    font-size: 1.875rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.25rem;
    line-height: 1;
  }

  .stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.25rem;
  }

  .stat-change {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    display: inline-block;
  }

  .stat-change.positive {
    background-color: #dcfce7;
    color: #166534;
  }

  .stat-change.neutral {
    background-color: #f3f4f6;
    color: #6b7280;
  }

  /* Enhanced Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
  }

  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
  }

  .btn:hover::before {
    left: 100%;
  }

  .btn-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
  }

  .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
  }

.btn-primary {
    background: #f5c811;
    /* background: linear-gradient(135deg, #f59e0b, #d97706); */
    color: #000000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

  .btn-primary:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .btn-secondary {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .btn-secondary:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .btn-outline {
    background-color: white;
    border: 1px solid #d1d5db;
    color: #6b7280;
  }

  .btn-outline:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
    color: #374151;
    transform: translateY(-1px);
  }

  .btn-danger {
    border-color: #fca5a5;
    color: #dc2626;
  }

  .btn-danger:hover {
    background-color: #fef2f2;
    border-color: #f87171;
  }

  /* Loading Animation */
  @keyframes pulse {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: .5;
    }
  }

  .loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  /* Responsive Design */
  @media (max-width: 640px) {
    .dashboard-section {
      padding: 1rem;
    }
    
    .dashboard-header {
      padding: 1.5rem;
    }
    
    .header-text h1 {
      font-size: 1.875rem;
    }
    
    .stats-card,
    .actions-card {
      padding: 1.5rem;
    }
    
    .order-item {
      padding: 1.5rem;
    }
    
    .orders-header {
      padding: 1.5rem;
    }
  }
  
  
  
  /* Form container */
#buyLinesForm {
  max-width: 480px;
  margin: 2rem auto;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff2bc;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);

}

/* Labels */
#buyLinesForm label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

/* Inputs */
#buyLinesForm .form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
  transition: border 0.2s, box-shadow 0.2s;
}

#buyLinesForm .form-input:focus {
  border-color: #2980b9;
  box-shadow: 0 0 0 2px rgba(41,128,185,0.2);
  outline: none;
}

/* Groups */
#buyLinesForm .form-group {
  margin-bottom: 1.2rem;
}

#buyLinesForm .form-row {
  display: flex;
  gap: 1rem;
}

/* Price box */
#buyLinesForm .price-box {
  background: #f9fafc;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.8rem;
  font-size: 14px;
  color: #444;
}

#buyLinesForm .price-box strong {
  color: #000;
}

#buyLinesForm .price-box .muted {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

/* Button */
#buyLinesForm .btn-primary {
  display: inline-block;
  width: 100%;
  padding: 12px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #2980b9;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

#buyLinesForm .btn-primary:hover {
  background: #1f6391;
}

#buyLinesForm .btn-primary:disabled {
  background: #b5c9d6;
  cursor: not-allowed;
}

/* Loading spinner */
.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Hint text */
#buyLinesForm .hint {
  font-size: 12px;
  color: #666;
}

/* Scoped styles to avoid collisions */
  #wp-savings-25{
    --b:#e5e7eb; --bg:#fff; --bg2:#f8fafc; --txt:#0f172a; --mut:#64748b;
    --g:#136b2e; --gBg:#eaf7ee;
    max-width: 720px; margin: 24px 0; font-family: Arial, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  }
  #wp-savings-25 .wp25-title{ font-size:20px; font-weight:700; color:var(--txt); margin:0 0 10px; }

  /* reset inside component to beat global styles */
  #wp-savings-25 table, #wp-savings-25 thead, #wp-savings-25 tbody, #wp-savings-25 tr, #wp-savings-25 th, #wp-savings-25 td { all: unset; }
  #wp-savings-25 .wp25-table{
    display: table; width:100%; border-collapse:separate; border-spacing:0;
    background:var(--bg); border:1px solid var(--b); border-radius:10px; overflow:hidden;
    table-layout: fixed;
  }
  #wp-savings-25 thead{ display: table-header-group; }
  #wp-savings-25 tbody{ display: table-row-group; }
  #wp-savings-25 tr{ display: table-row; }
  #wp-savings-25 th, #wp-savings-25 td{
    display: table-cell; padding:12px; border-bottom:1px solid var(--b);
    vertical-align:middle; color:var(--txt); font-size:14px; background:#fff;
  }
  #wp-savings-25 thead th{ background:var(--bg2); font-weight:700; text-align:left; }
  #wp-savings-25 tr:last-child td{ border-bottom:none; }
  #wp-savings-25 .wp25-num{ text-align:left; font-variant-numeric: tabular-nums; white-space:nowrap; }
  #wp-savings-25 .wp25-muted{ color:var(--mut); font-weight:400; font-size:12px; }
  #wp-savings-25 .wp25-badge{ display:inline-block; padding:4px 10px; border-radius:999px; font-weight:700; font-size:12px; background:var(--gBg); color:var(--g); }
  #wp-savings-25 .wp25-footnote{ color:var(--mut); font-size:12px; margin-top:8px; }    
  
  
  /* Signup & Compare Section - Additional CSS for your existing stylesheet */

.signup-compare-section {
  width: 100%;
  padding: 4rem 0 6rem;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.signup-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.shape-top {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background-color: #f9d92a;
  border-radius: 50%;
  opacity: 0.2;
}

.shape-bottom {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 6rem;
  height: 6rem;
  background-color: #1f2440;
  border-radius: 50%;
  opacity: 0.1;
}

.signup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;

}

@media (min-width: 1024px) {
  .signup-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Left Side - Signup Offer */
.offer-card {
  background: linear-gradient(to right, #fefbea, #fdf6c5);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #fcec8c;
}

.offer-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.discount-badge {
  background-color: #f5c811;
  color: #1f2440;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: bold;
  margin-right: 0.75rem;
}

.offer-label {
  color: #2f365d;
  font-weight: 500;
}

.offer-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2440;
  margin-bottom: 0.75rem;
}

.offer-description {
  color: #2f365d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  color: #2f365d;
}

.benefit-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #d9a60a;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.signup-btn {
  width: 100%;
  background-color: #f5c811;
  color: #1f2440;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}

.signup-btn:hover {
  background-color: #d9a60a;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.offer-note {
  font-size: 0.75rem;
  color: #4f5a96;
  text-align: center;
  margin-top: 0.75rem;
}

/* Right Side - Comparison */
.comparison-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comparison-header {
  text-align: center;
}

@media (min-width: 1024px) {
  .comparison-header {
    text-align: left;
  }
}

.comparison-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2440;
  margin-bottom: 0.75rem;
}

.comparison-subtitle {
  color: #2f365d;
}

.comparison-table-wrapper {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead tr {
  background-color: #f0f1f8;
}

.feature-header {
  text-align: left;
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: #1f2440;
}

.manual-header {
  text-align: center;
  padding: 1rem;
  font-weight: 600;
  color: #1f2440;
}

.waiverpass-header {
  text-align: center;
  padding: 1rem;
  font-weight: 600;
  color: #1f2440;
  background-color: #fdf6c5;
}

.comparison-table tbody tr {
  border-top: 1px solid #f3f4f6;
}

.feature-cell {
  padding: 1rem 1.5rem;
  font-weight: 500;
  color: #2f365d;
}

.manual-cell {
  padding: 1rem;
  text-align: center;
  color: #4f5a96;
}

.waiverpass-cell {
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  color: #b4800b;
  background-color: #fefbea;
}

.error-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #dc2626;
  margin: 0 auto;
}

.success-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #16a34a;
  margin: 0 auto;
}

.social-proof {
  text-align: center;
}

.social-proof p {
  font-size: 0.875rem;
  color: #4f5a96;
}

.highlight-number {
  font-weight: 600;
  color: #d9a60a;
}

/* Responsive */
@media (max-width: 768px) {
  .signup-compare-section {
    padding: 3rem 0 4rem;
  }
  
  .signup-grid {
    gap: 2rem;
  }
  
  .offer-card {
    padding: 1.5rem;
  }
  
  .comparison-table-wrapper {
    overflow-x: auto;
  }
  
  .comparison-table {
    min-width: 500px;
  }
}  


/* ===== Membership benefits (right column) ===== */
.comparison-side .membership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .comparison-side .membership-grid {
    grid-template-columns: 1fr 1fr; /* 2 columns on desktop */
  }
}

.comparison-side .membership-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.06);
}

.comparison-side .membership-card .icon {
  font-size: 1.25rem;
  line-height: 1;
  flex: 0 0 auto;
}

.comparison-side .membership-card .title {
  font-weight: 700;
  color: #1f2440;
  margin-bottom: 0.25rem;
}

.comparison-side .membership-card .text {
  color: #2f365d;
  font-size: 0.95rem;
}

/* Mini compare strip */
.comparison-side .membership-compare {
  margin-top: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
}

.comparison-side .membership-compare .row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  background: #fff;
  font-size: 0.95rem;
}
.comparison-side .membership-compare .row:first-child {
  background: #f0f1f8;
  font-weight: 600;
}
.comparison-side .membership-compare .row:last-child { border-bottom: none; }

.comparison-side .membership-compare .good {
  color: #136b2e;
  font-weight: 700;
}
.comparison-side .membership-compare .bad {
  color: #b91c1c;
  font-weight: 700;
}
.comparison-side .membership-compare .pill {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 9999px;
  background: #eaf7ee;
  color: #136b2e;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Keep your existing headings */
.comparison-side .comparison-header { text-align: left; }
