:root {
  --bg-dark: #07130d;
  --cream: #f4eedc;
  --cream-2: #f2eee3;
  --cream-3: #f2eee4;
  --dark: #131510;
  --border-light: rgba(237, 234, 225, 0.74);
  --border-dark: rgba(8, 18, 12, 0.27);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Host Grotesk", sans-serif;
  background-color: var(--bg-dark);
  background-image: url("../images/page-noise.webp");
  color: var(--cream-2);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  white-space: nowrap;
  line-height: 14px;
  border-radius: 8px;
  border: none;
}
.btn:hover {
  opacity: 0.85;
}
.btn-solid {
  background: #e1e0e0;
  color: #000;
}
.btn-solid:hover {
  background: #005842e0;
  color: #fff;
}
.btn-dark {
  background: #023d2e;
  color: #fff;
}
/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    #07130dd1 0%,
    #07120c99 0%,
    #07120c96 17%,
    #fff0 127%
  );
}
.nav {
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  width: 93%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}
.nav-links {
  display: flex;
  gap: 26px;
  width: 33%;
}
.nav-links a {
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--cream-2);
  white-space: nowrap;
  font-weight: 500;
  position: relative;
}
.nav-links a::before {
  content: attr(data-title);
  position: absolute;
  left: 0;
  white-space: nowrap;
}
.nav-links a:hover::before {
  font-weight: 700;
}
.nav-links a > span {
  color: transparent;
}
.nav-brand {
  font-size: 30px;
  letter-spacing: -0.03em;
  color: var(--cream-2);
}
.nav-cta {
  width: 33%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
}
/* ================= LANGUAGE SWITCH ================= */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 3px;
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--cream-2);
  opacity: 0.55;
  border-radius: 6px;
  transition:
    opacity 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.lang-switch a:hover {
  opacity: 0.85;
}
.lang-switch a.is-active {
  opacity: 1;
  background: var(--cream-2);
  color: var(--dark);
  cursor: default;
  pointer-events: none;
}
.mobile-menu .lang-switch {
  border: none;
  border-top: 1px solid var(--border-light);
  border-radius: 0;
  padding: 16px 0 0;
  margin-top: 4px;
  gap: 16px;
}
.mobile-menu .lang-switch a {
  padding: 0;
  min-width: 0;
  opacity: 0.55;
}
.mobile-menu .lang-switch a.is-active {
  background: transparent;
  color: var(--cream);
  opacity: 1;
  font-weight: 700;
}
.burger {
  display: none;
  background: transparent;
  border: 1px solid #f2eee43b;
  color: var(--cream);
  width: 43px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  right: 20px;
  left: 20px;
  z-index: 20;
  background: var(--dark);
  border: 1px solid var(--border-light);
  flex-direction: column;
  padding: 20px;
  gap: 16px;
}
.mobile-menu a {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}
.mobile-menu.open {
  display: flex;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 790px;
  text-align: center;
}
.hero-title {
  font-size: 42px;
  line-height: 59px;
  text-transform: uppercase;
  max-width: 566px;
  font-weight: 600;
  letter-spacing: 1.8px;
}
.eyebrow {
  max-width: 554px;
  line-height: 30px;
}
/* ================= PHILOSOPHY ================= */
.philosophy {
  background-color: #e2e2e2;
  padding: 70px 40px;
  display: flex;
  gap: 58px;
  max-width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  background-image: url("../images/psihology-noise.webp");
}
.philosophy-left {
  flex: 1;
  max-width: 22%;
}
.philosophy-left p {
  color: #031c15;
  font-weight: 500;
  font-size: 24px;
  line-height: 42px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.philosophy-right {
  flex: 1;
  max-width: 762px;
}
.philosophy-right p {
  line-height: 1.7em;
  color: #000;
  line-height: 30px;
  text-align: right;
}
/* ================= TICKER ================= */
.ticker-wrap {
  background: var(--dark);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.ticker-item {
  width: 300px;
  height: 300px;
  flex: none;
}
.ticker-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ================= PROBLEMS ================= */
.problems {
  background-color: #e2e2e2;
  background-image: url("../images/problems-noise.webp");
  padding: 70px 50px;
}
.problems-title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #031c15;
  margin-bottom: 30px;
  line-height: 40px;
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 0 auto;
  max-width: 1340px;
}
.problem-card {
  background: #e9e9e9;
  border: 1px solid #cccccc;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.problem-header {
  display: flex;
  align-items: center;
  gap: 20px;
}
.problem-icon {
  display: flex;
}
.problem-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 30px;
}
.problem-card p {
  color: #383838e5;
  font-weight: 400;
  line-height: 30px;
  max-width: 260px;
}
/* ================= CREAM SECTION ================= */
.cream-section {
  padding: 70px 50px;
}
.services-intro {
  max-width: 576pxpx;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.eyebrow-dark {
  font-size: 24px;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 24px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 2.4px;
}
.services-lead {
  color: #fff;
  line-height: 30px;
}
.services-list {
  max-width: 916px;
  margin: 30px auto 0;
}
.service-row {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 20px;
  padding-top: 30px;
  padding-bottom: 24px;
  border: 1px solid #ccc;
  margin-bottom: 30px;
  border-radius: 8px;
}
.service-row:last-child {
  margin-bottom: 0;
}
.service-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.service-head p {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  line-height: 18px;
}
.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffffff85;
  display: inline-block;
}
.service-price {
  color: #ffffffcc;
  line-height: 28.8px;
}
.service-desc {
  color: #ffffffe5;
  line-height: 28px;
}
.service-btn {
  margin-top: 30px;
  display: flex;
  justify-self: center;
}
/* ================= CAROUSEL ================= */
.carousel {
  position: relative;
}
#beforeAfterCarousel .item img {
  width: 100%;
  display: block;
  aspect-ratio: 1.334;
  object-fit: cover;
  border-radius: 2px;
}
#beforeAfterCarousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  margin: 0;
}
#beforeAfterCarousel .owl-nav button.owl-prev,
#beforeAfterCarousel .owl-nav button.owl-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.2s ease;
  margin: 20px;
}
#beforeAfterCarousel .owl-nav button.owl-prev:hover,
#beforeAfterCarousel .owl-nav button.owl-next:hover {
  background: rgba(0, 0, 0, 0.55) !important;
}
#beforeAfterCarousel .owl-nav button.disabled {
  opacity: 0;
  pointer-events: none;
}
/* ================= CARE FORMAT ================= */
.format-section {
  background-color: #e2e2e2;
  padding: 70px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  background-image: url("../images/format-noise.webp");
}
.format-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.format-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #031c15;
  text-align: center;
}
.format-subtitle {
  max-width: 672px;
  text-align: center;
  line-height: 30px;
  color: #000;
}
.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 584px;
  width: 100%;
}
.format-card {
  background: #e9e9e9;
  border: 1px solid #cbcbcb;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.format-icon {
  flex: none;
}
.format-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 30px;
}
.format-btn {
  font-weight: 400;
}
/* ================= CALCULATOR ================= */
.calculator-section {
  padding: 70px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.calc-title {
  text-align: center;
  max-width: 320px;
  color: var(--cream-3);
  font-weight: 400;
  font-size: 27px;
  line-height: 39px;
  letter-spacing: -1.8px;
  text-transform: uppercase;
}
.calc-subtitle {
  font-size: 17px;
  text-align: center;
  max-width: 447px;
  color: var(--cream-3);
  margin-top: -20px;
  line-height: 28.05px;
  letter-spacing: -0.34px;
}
.calc-card {
  width: 100%;
  max-width: 1045px;
  background: #e9e9e9;
  border: 1px solid #cbcbcb;
  padding: 30px;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  gap: 19px;
  border-radius: 8px;
}
.calc-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 20px;
}
.calc-field {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.calc-field label,
.calc-field > span {
  font-size: 15px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.15px;
}
.calc-field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 16px;
  border-radius: 8px;
  background: #fff;
  border: none;
  outline: none;
  cursor: pointer;
}
/* track */
.calc-field input[type="range"]::-webkit-slider-runnable-track {
  height: 16px;
  border-radius: 8px;
  background: #fff;
  border: none;
}
.calc-field input[type="range"]::-moz-range-track {
  height: 16px;
  border-radius: 8px;
  background: #fff;
  border: none;
}
/* thumb */
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #005842;
  border: none;
  margin-top: -2px;
  cursor: pointer;
}
.calc-field input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--text-dark);
  border: none;
  cursor: pointer;
}
.calc-field input[type="number"] {
  width: 100%;
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.03);
  color: #09130d;
  padding: 13px 15px;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  border-radius: 14px;
  line-height: 100%;
}
.calc-hint {
  font-size: 14.9px;
  color: #09130d;
}
.calc-toggle {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.toggle-btn {
  border: 1px solid #cbcbcb;
  background: transparent;
  color: var(--dark);
  padding: 11px 21px;
  cursor: pointer;
  font-size: 15px;
  transition:
    background 0.15s ease,
    color 0.15s ease;
  line-height: 100%;
  border-radius: 8px;
}
.toggle-btn.active {
  background: #023d2e;
  border-color: var(--dark);
  color: #e1e0e0;
}
.calc-result {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #cbcbcb;
  padding-top: 20px;
}
.calc-price {
  font-size: 48px;
  letter-spacing: -0.03em;
  line-height: 1em;
}
.calc-price-sub {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 8px;
}
/* ================= FAQ ================= */
.faq-section {
  background-color: #e2e2e2;
  padding: 70px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("../images/faq-noise.png");
}
.faq-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 20px;
  text-align: center;
  line-height: 40px;
}
.faq-list {
  width: 100%;
  max-width: 1042px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  border: 1px solid #cbcbcb;
  border-radius: 8px;
  overflow: hidden;
}
.faq-item.is-open {
  background: #e9e9e9;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 30px;
}
.faq-item.is-open .faq-question {
  padding: 15px 20px 0;
}
.faq-icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  padding: 4px 0 4px 4px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 20px;
}
.faq-answer p {
  font-size: 16px;
  line-height: 30px;
  color: #383838;
  padding-top: 5px;
  padding-bottom: 15px;
}
.faq-item.is-open .faq-answer {
  max-height: 300px;
}
/* ================= FOOTER ================= */
.footer {
  color: #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 15px 28px 18px;
  background: var(--bg-dark);
}
.footer p {
  line-height: 14px;
  font-size: 14px;
  font-weight: 500;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
}
/* ================= CONSULTATION MODAL ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 19, 13, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--cream-3);
  border-radius: 12px;
  padding: 40px;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}
.modal-overlay.is-open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--dark);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 10px;
}
.modal-subtitle {
  font-size: 14px;
  line-height: 1.5em;
  color: rgba(19, 21, 16, 0.7);
  margin-bottom: 24px;
}
.consult-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
}
.form-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.5);
  color: var(--dark);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  border-radius: 6px;
  transition: border-color 0.2s ease;
}
.form-field input:focus {
  border-color: var(--dark);
}
.form-field input.has-error {
  border-color: #b33a3a;
}
.modal-submit {
  width: 100%;
  border: none;
  margin-top: 6px;
}
.modal-success {
  text-align: center;
  padding: 12px 0 4px;
}
.modal-success p {
  color: rgba(19, 21, 16, 0.75);
  line-height: 1.5em;
  margin-top: 8px;
}
body.modal-open {
  overflow: hidden;
}
/* ================= PHOTO ESTIMATE MODAL ================= */
.modal-box-wide {
  max-width: 480px;
}
.photo-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px dashed var(--border-dark);
  background: rgba(255, 255, 255, 0.4);
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.photo-upload-btn:hover {
  background: rgba(255, 255, 255, 0.7);
}
.photo-upload-btn.has-error {
  border-color: #b33a3a;
}
.photo-upload-btn.is-processing {
  opacity: 0.6;
  cursor: wait;
  pointer-events: none;
}
.photo-error {
  display: block;
  font-size: 12px;
  color: #b33a3a;
  min-height: 16px;
}
.photo-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.photo-thumb {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
}
.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-thumb-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.test-photo-trigger {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  background: var(--dark);
  color: var(--cream-3);
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
/* ================= RESPONSIVE ================= */
@media (max-width: 1199px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    display: none;
  }
  .services-list {
    max-width: none;
  }
  .service-row {
    gap: 30px;
  }
  .cta-text {
    max-width: 475px;
  }
}
@media (max-width: 809px) {
  .problems {
    padding: 60px 20px;
  }
  .problems-grid {
    grid-template-columns: 1fr;
  }
  .problem-card p {
    max-width: none;
  }
  .carousel {
    margin: 0 auto;
  }
  .format-section {
    padding: 60px 20px;
  }
  .format-grid {
    grid-template-columns: 1fr;
  }
  .format-card {
    padding: 20px;
    justify-content: center;
    align-items: center;
  }
  .faq-section {
    padding: 60px 20px;
  }
  .faq-question {
    font-size: 14px;
    padding: 16px;
  }
  .nav-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero {
    padding: 0 20px;
  }
  .hero-content {
    gap: 33px;
  }
  .hero-title {
    font-size: 40px;
  }
  .eyebrow {
    font-size: 16px;
    line-height: 32.8px;
  }
  .philosophy {
    flex-direction: column;
    gap: 40px;
    padding: 60px 40px;
  }
  .philosophy-left {
    max-width: 100%;
  }
  .cream-section {
    padding: 60px 20px;
  }
  .eyebrow-dark {
    letter-spacing: 1.6px;
    line-height: normal;
  }
  .services-brand {
    font-size: 68px;
  }
  .service-row {
    gap: 30px;
  }
  .service-num {
    width: 78px;
    font-size: 60px;
  }
  .service-num svg {
    width: 100%;
    height: auto;
  }
  .service-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .dot {
    display: none;
  }
  .service-desc {
    font-size: 14px;
  }
  .calculator-section {
    padding: 60px 20px;
  }
  .calc-title {
    font-size: 30px;
  }
  .calc-subtitle {
    font-size: 15px;
    max-width: 436px;
  }
  .calc-card {
    padding: 36px;
  }
  .cta-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }
  .cta-text {
    max-width: none;
  }
  .cta-text p {
    max-width: 100%;
  }
  .cta-text h2 {
    font-size: 30px;
  }
  .footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .footer-info {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .modal-box {
    padding: 28px 22px;
  }
}
@media (max-width: 432px) {
  .calc-subtitle {
    max-width: 360px;
  }
  .cta-text {
    max-width: 342px;
  }
}

/* ================= SERVICE PAGES ================= */
.hero--service {
  min-height: 70vh;
}
.hero--service .hero-content {
  padding: 140px 0 60px;
}
.breadcrumbs {
  font-size: 13px;
  color: #ffffffb3;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.hero-price {
  font-size: 16px;
  color: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 24px;
}
.service-head p a:hover {
  text-decoration: underline;
}
.service-more {
  color: #ffffffcc;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  align-self: flex-start;
}
.service-more:hover {
  color: #fff;
  text-decoration: underline;
}

/* ================= NAV DROPDOWN ================= */
.nav-item {
  position: relative;
}
.has-dropdown > a::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  margin-bottom: 3px;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--cream-2);
  border-bottom: 1.5px solid var(--cream-2);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.2s ease;
}
.nav-item:hover > a::after {
  transform: translateY(-4px) scaleY(-1) rotate(45deg) translateY(-3px);
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  padding-top: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
  z-index: 20;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-inner {
  background: #0b1a12f5;
  border: 1px solid rgba(237, 234, 225, 0.2);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 250px;
  backdrop-filter: blur(6px);
}
.nav-dropdown-inner a {
  display: block;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 400;
}
.nav-dropdown-inner a:hover {
  font-weight: 700;
}
.problems .service-btn {
  margin: 30px auto 0;
}
.format-section--dark {
  background-color: transparent;
  background-image: none;
}
.format-section--dark .format-title,
.format-section--dark .format-subtitle {
  color: var(--cream-2);
}
.problems .problem-icon {
  color: #0a1f16;
}
.problems .problem-icon svg {
  display: block;
}
.row-icon {
  flex: none;
  display: flex;
  color: var(--cream-2);
}
.faq-section--dark {
  background-color: transparent;
  background-image: none;
}
.faq-section--dark .faq-title {
  color: var(--cream-2);
}
.faq-section--dark .faq-item {
  border-color: #ccc;
}
.faq-section--dark .faq-item.is-open {
  background: transparent;
}
.faq-section--dark .faq-question {
  color: var(--cream-2);
}
.faq-section--dark .faq-answer p {
  color: #ffffffe5;
}
.faq-section--dark .faq-icon rect {
  fill: var(--cream-2);
}
.format-section--problems {
  background-image: url("../images/problems-noise.webp");
}
