/* 
  HubSpot Custom Module Styles
  Optimized for HubSpot with class-based styling.
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


/* Main Container */
.lp-module-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #000;
  overflow: hidden;
  font-family: 'Open Sans', sans-serif;
}

@media (min-width: 1024px) {
  .lp-module-container { flex-direction: row; }
}

.hs-form-container button{
 margin-top: 40px; 
}

/* Left Section */
.lp-info-section {
  position: relative;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 50vh;
}

@media (min-width: 1024px) {
  .lp-info-section { width: 60%; height: 100vh; padding: 4rem; }
}

.lp-bg-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.lp-overlay {
  position: absolute; inset: 0;
  background-color: rgba(0, 0, 0, 0.05);
}

.lp-info-content {
  position: relative; z-index: 10;
  width: 100%; max-width: 42rem;
}

/* Content */
.lp-badge {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: #ea580c;
  color: white;
  border: 1px solid rgba(234, 88, 12, 0.3);
  font-weight: 600; font-size: 0.75rem;
  text-transform: uppercase; margin-bottom: 1.5rem;
}

.lp-headline {
  font-family: 'Open sans', sans-serif;
  font-size: 3rem; font-weight: 700; line-height: 1;
  color: #fff; margin-bottom: 2rem;
}

@media (min-width: 768px) { .lp-headline { font-size: 4.5rem; } }

.lp-highlight { color: #ea580c; }

.lp-description {
  font-size: 1.125rem; color: #d1d5db;
  line-height: 1.6; margin-bottom: 3rem;
}

/* Details Grid */
.lp-details-grid {
  display: grid; grid-template-cols: (1, 1fr;) gap: 2rem; margin-bottom: 3rem;
}

@media (min-width: 640px) { .lp-details-grid { grid-template-cols: repeat(2, 1fr); } }

.lp-detail-item { display: flex; align-items: flex-start; gap: 1rem; }
.lp-detail-item.lp-wide { grid-column: 1 / -1; }

.lp-icon-box {
  padding: 0.75rem; border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-icon { width: 1.5rem; height: 1.5rem; color: #f97316; }

.lp-detail-label {
  font-size: 0.75rem; font-weight: 700; color: #ea580c;
  text-transform: uppercase; 
}

.lp-detail-value { font-size: 1.125rem; font-weight: 500; color: #fff; }

/* Features Row */
.lp-features-row {
  display: grid; grid-template-cols: repeat(4, 1fr); gap: 1rem;
}

.lp-feature { display: flex; flex-direction: column; align-items: center; text-align: center; color: #d1d5db; }
.lp-feature-icon { width: 1.25rem; height: 1.25rem; color: #f97316; margin-bottom: 0.5rem; }
.lp-feature span { font-size: 0.65rem; font-weight: 500; text-transform: uppercase; }

/* Right Section - Form */
.lp-form-section {
  width: 100%; background-color: #000;
  display: flex; flex-direction: column; align-items: center; justify-content: center; 
  padding: 2rem; min-height: 50vh; position: relative;
}

@media (min-width: 1024px) { .lp-form-section { width: 60%; height: 100vh; padding: 3.5rem; } }

.lp-form-title { font-family: 'Open Sans', sans-serif; font-size: 2.25rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.lp-form-subtitle { color: #9ca3af; margin-bottom: 2.5rem; font-size: 0.875rem; }

/* HubSpot Form Overrides */
.hs-form-container label {
  color: #9ca3af !important; font-size: 0.75rem !important;
  font-weight: 700 !important; text-transform: uppercase !important;
}

.hs-form-container input[type="text"], .hs-form-container input[type="email"], .hs-form-container select {
  background-color: #111827 !important; border: 1px solid #1f2937 !important; width: 400px; height: 50px;
  color: white !important; padding: 1rem !important; border-radius: 0.75rem !important;
}

.hs-form-container .hs-button {
  background-color: #ea580c !important; color: white !important;
  padding: 1.25rem !important; width: 100% !important; border-radius: 0.75rem !important;
  font-weight: 700 !important; border: none !important;
}

.lp-features-row { 
  display: flex;
  justify-content: space-between;
}

.lp-footer {
  position: absolute; bottom: 2rem;
  width: 100%; display: flex; justify-content: space-around;
  color: #4b5563; font-size: 0.625rem; text-transform: uppercase;
}