/* LCL США - Сторінка з адаптованими стилями */

/* Загальні контейнери */
.lcl-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 100px;
}

/* Hero Section */
.lcl-hero {
  margin: 0 auto;
  padding: 217px 0 100px 0;
  min-height: 900px;
  max-width: 1440px;
  background-color: #fafafa;
}

.lcl-hero-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  color: #062d2b;
  text-align: center;
  margin-bottom: 20px;
}

.lcl-hero-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  color: #010101;
  text-align: center;
  margin-bottom: 60px;
}

/* Calculator Form */
.calculator-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.calculator-form {
  background-color: #cef9ef;
  padding: 40px;
  border-radius: 0;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.calc-field {
  display: flex;
  flex-direction: column;
}

.calc-field label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #010101;
  margin-bottom: 4px;
}

.calc-field input,
.calc-field select {
  border: 1px solid #062d2b;
  padding: 8px 16px;
  height: 43px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 150%;
  color: #010101;
  background-color: white;
  transition: border-color 0.3s;
}

.calc-field input:focus,
.calc-field select:focus {
  border-color: #36cbb5;
  outline: none;
}

.calc-field select[disabled] {
  background-color: #e0e0e0;
  color: #666;
  cursor: not-allowed;
}

.calc-button-container {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 10px;
}

.calc-submit-btn {
  padding: 16px 48px;
  height: 62px;
  background: #36cbb5;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #010101;
  cursor: pointer;
  transition: background 0.3s;
}

.calc-submit-btn:hover {
  background: #6ce4ce;
}

.calc-submit-btn:active {
  background: #1cb09b;
}

/* Result Block */
.result-block {
  margin-top: 40px;
  padding: 40px;
  background-color: #cef9ef;
  border-left: 5px solid #36cbb5;
  display: none;
}

.result-price {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 150%;
  color: #062d2b;
  margin-bottom: 16px;
}

.result-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #010101;
  margin-bottom: 24px;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: end;
}

.lead-form-grid input {
  border: 1px solid #062d2b;
  padding: 8px 16px;
  height: 43px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 150%;
  color: #010101;
  width: 100%;
}

.lead-submit-btn {
  padding: 16px 24px;
  height: 43px;
  background: #36cbb5;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #010101;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.lead-submit-btn:hover {
  background: #6ce4ce;
}

.lead-submit-btn:active {
  background: #1cb09b;
}

/* Schedule Section */
.lcl-schedule {
  margin: 0 auto;
  padding: 100px 0;
  max-width: 1440px;
  background-color: white;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 150%;
  color: #062d2b;
  text-align: center;
  margin-bottom: 60px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
  font-size: 16px;
  max-width: 1240px;
  margin: 0 auto;
  border: 1px solid #cef9ef;
}

.schedule-header {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  background-color: #cef9ef;
  padding: 20px 16px;
  text-align: center;
  color: #010101;
}

.schedule-row {
  display: contents;
}

.schedule-row-item {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  padding: 20px 16px;
  border-bottom: 1px solid #cef9ef;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #010101;
}

.schedule-row:last-of-type .schedule-row-item {
  border-bottom: none;
}

.schedule-row:nth-child(odd) .schedule-row-item {
  background-color: white;
}

.schedule-row:nth-child(even) .schedule-row-item {
  background-color: #fafafa;
}

.schedule-row-item:nth-child(1) {
  justify-content: start;
  font-weight: 500;
}

.schedule-btn {
  padding: 12px 24px;
  background: #36cbb5;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #010101;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
  display: inline-block;
}

.schedule-btn:hover {
  background: #6ce4ce;
}

.schedule-btn:active {
  background: #1cb09b;
}

/* Benefits Section */
.lcl-benefits {
  margin: 0 auto;
  padding: 100px 0;
  max-width: 1440px;
  background-color: #fafafa;
}

.benefits-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1240px;
}

.benefit-item {
  flex-basis: calc(33.333% - 16px);
  min-width: 292px;
  padding: 40px;
  background: #cef9ef;
  text-align: center;
  transition: background 0.3s;
}

.benefit-item:hover {
  background: #6ce4ce;
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.benefit-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  color: #010101;
  margin-bottom: 16px;
}

.benefit-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #010101;
}

/* Final Form Section */
.lcl-final-form {
  margin: 0 auto;
  padding: 100px 0;
  max-width: 1440px;
  background-color: white;
}

.final-form-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background-color: #cef9ef;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field-full {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-field label,
.form-field-full label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #010101;
  margin-bottom: 4px;
}

.form-field input,
.form-field-full input,
.form-field-full select,
.form-field-full textarea {
  border: 1px solid #062d2b;
  padding: 8px 16px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 150%;
  color: #010101;
  background-color: white;
}

.form-field input,
.form-field-full input,
.form-field-full select {
  height: 43px;
}

.form-field-full textarea {
  min-height: 100px;
  resize: vertical;
}

.final-submit-btn {
  padding: 16px 48px;
  width: 100%;
  height: 62px;
  background: #36cbb5;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #010101;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 16px;
}

.final-submit-btn:hover {
  background: #6ce4ce;
}

.final-submit-btn:active {
  background: #1cb09b;
}

/* Responsive Design */
@media (max-width: 1440px) {
  body {
    min-width: auto;
  }

  .nav {
    min-width: auto;
  }

  .lcl-container {
    padding: 0 50px;
  }

  .lcl-hero {
    max-width: 100%;
  }

  .lcl-schedule,
  .lcl-benefits,
  .lcl-final-form {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .lcl-container {
    padding: 0 20px;
  }

  .lcl-hero {
    padding: 150px 0 60px 0;
    min-height: auto;
  }

  .lcl-hero-title {
    font-size: 32px;
  }

  .lcl-hero-subtitle {
    font-size: 18px;
  }

  .calculator-form {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .lead-form-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .schedule-grid {
    grid-template-columns: 1.5fr 1fr 2fr;
    font-size: 14px;
  }

  .schedule-header:nth-child(2),
  .schedule-row-item:nth-child(2) {
    display: none;
  }

  .schedule-row-item:nth-child(1) {
    justify-content: center;
    text-align: center;
  }

  .schedule-btn {
    font-size: 12px;
    padding: 10px 16px;
  }

  .benefits-grid {
    flex-direction: column;
  }

  .benefit-item {
    flex-basis: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .final-form-box {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .schedule-grid {
    grid-template-columns: 1fr 1fr;
    font-size: 12px;
  }

  .schedule-header:nth-child(3),
  .schedule-row-item:nth-child(3) {
    display: none;
  }

  .schedule-btn {
    font-size: 11px;
    padding: 8px 12px;
  }
}
