/* Critical Above-the-Fold CSS for Performance */

/* Font Face Declarations */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2') format('woff2');
}

/* Critical Hero Section Styles */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.expedite-your-us-container {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.confidential-remote-container {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  text-align: center;
  margin: 1.5rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* Critical Form Styles */
.llc-form-wrapper {
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.llc-input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease;
}

.llc-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Critical Button Styles */
.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Critical Layout Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col, .col-12, .col-lg-4, .col-lg-6, .col-lg-8, .col-md-6 {
  padding: 0 15px;
  flex: 1;
}

.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
.col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }

/* Text and Spacing Utilities */
.text-center { text-align: center; }
.mt-5 { margin-top: 3rem; }
.mb-5 { margin-bottom: 3rem; }
.pt-5 { padding-top: 3rem; }
.pb-5 { padding-bottom: 3rem; }

/* Critical Image Styles */
img {
  max-width: 100%;
  height: auto;
  border: 0;
}

/* Loading Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero > * {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
  .col-lg-4, .col-lg-6, .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .expedite-your-us-container {
    font-size: 2rem;
  }

  .llc-input {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }
}

/* Performance Critical Preload */
.preload-critical {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}
