/* Critical CSS - Above the fold styles */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #262626;
  background-color: #FAFAFA;
  overflow-x: hidden;
}

/* Critical layout styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header critical styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(228, 64, 95, 0.95) 0%, rgba(245, 96, 64, 0.95) 50%, rgba(252, 175, 69, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1030;
  transition: all 0.3s ease-in-out;
}

.nav {
  padding: 1rem 0;
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav__company-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav__toggle {
  display: none;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  margin: 4px 0;
  border-radius: 2px;
}

/* Hero section critical styles */
.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #E4405F 0%, #F56040 50%, #FCAF45 100%);
  overflow: hidden;
  margin-top: -80px;
  padding-top: 80px;
  padding-bottom: 3rem;
}

.hero__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1rem 2rem;
  text-align: center;
}

.hero__content {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 2rem;
}

.hero__title-main {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.hero__title-sub {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: #FFFFFF;
  opacity: 0.9;
}

.hero__description {
  font-size: 1.125rem;
  color: #FFFFFF;
  opacity: 0.9;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Button critical styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  min-width: 44px;
}

.btn--primary {
  background: linear-gradient(135deg, #E4405F 0%, #F56040 100%);
  color: #FFFFFF;
  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:not(:disabled) {
  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);
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  min-height: 52px;
}

.btn--disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Responsive critical styles */
@media (max-width: 768px) {
  .nav__toggle {
    display: flex !important;
  }
  
  .nav__menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.98) 0%, rgba(245, 96, 64, 0.98) 50%, rgba(252, 175, 69, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1rem;
    z-index: 1030;
  }
  
  .nav__menu.show {
    display: flex;
  }
  
  .hero {
    min-height: 65vh;
  }
  
  .hero__container {
    padding: 4rem 1rem 1.5rem;
  }
  
  .hero__content {
    padding-top: 1.5rem;
  }
  
  .hero__title-main {
    font-size: 2.25rem;
  }
  
  .hero__title-sub {
    font-size: 1.125rem;
  }
  
  .hero__description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero__title-main {
    font-size: 1.5rem;
  }
  
  .hero__title-sub {
    font-size: 1rem;
  }
  
  .btn--large {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    min-height: 48px;
  }
}

