* { box-sizing: border-box; }

.ow-hero {
  position: relative;
  padding: 1.4rem 0.8rem 1rem;
  background: #111;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ow-hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ow-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}
.ow-hero-body {
  max-width: 6.8rem;
  position: relative;
  z-index: 2;
}
.ow-h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.18rem;
  color: #fff;
}
.ow-h1 strong {
  font-weight: 700;
}
.ow-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.24rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin: 0 0 0.3rem;
  max-width: 5rem;
}
.ow-btns {
  display: flex;
  gap: 0.12rem;
  flex-wrap: wrap;
}
.ow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.12rem 0.28rem;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.20rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
}
.ow-btn:hover {
  border-color: #E88B00;
  color: #E88B00;
}
.ow-btn-fill {
  background: #E88B00;
  border-color: #E88B00;
  color: #fff;
}
.ow-btn-fill:hover {
  background: #d07d00;
  border-color: #d07d00;
  color: #fff;
}

.ow-section {
  padding: 1rem 0.8rem;
  background: #000;
  color: #fff;
}
.ow-section-alt {
  background: #0a0a0a;
}
.ow-section-compact {
  padding-bottom: 0.2rem;
}
.ow-section-compact-top {
  padding-top: 0;
}
.ow-cards-two {
  grid-template-columns: repeat(2, 1fr);
}
.ow-inner {
  max-width: 14rem;
  margin: 0 auto;
}
.ow-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.19rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E88B00;
  margin-bottom: 0.16rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ow-label::before {
  display: none;
}
.ow-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.48rem;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.14rem;
  color: #fff;
}
.ow-title strong {
  font-weight: 700;
}
.ow-subdesc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.24rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0 0 0.5rem;
  max-width: 7rem;
}

.ow-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.36rem;
}
.ow-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.14rem;
  padding: 0.4rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.ow-card:hover {
  border-color: #E88B00;
  transform: translateY(-4px);
}
.ow-card-icon {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: rgba(232,139,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.22rem;
  color: #E88B00;
}
.ow-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.24rem;
  font-weight: 600;
  margin-bottom: 0.14rem;
  color: #fff;
}
.ow-card-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.20rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.ow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.24rem;
}
.ow-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid rgba(232,139,0,0.35);
  border-radius: 0.14rem;
  padding: 0.36rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.ow-step:hover {
  border-color: rgba(255,255,255,0.15);
  border-left-color: #E88B00;
  transform: translateY(-4px);
}
.ow-step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.52rem;
  font-weight: 300;
  color: rgba(232,139,0,0.3);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.ow-step:hover .ow-step-num {
  color: rgba(232,139,0,0.55);
}
.ow-step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.22rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.12rem;
}
.ow-step-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.18rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.ow-faq {
  max-width: 9rem;
}
.ow-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ow-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0.24rem 0.5rem 0.24rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.24rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}
.ow-faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.24rem;
  font-weight: 300;
  color: #E88B00;
  transition: transform 0.3s;
}
.ow-faq-item.open .ow-faq-q::after {
  content: '−';
}
.ow-faq-q:hover {
  color: #E88B00;
}
.ow-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.20rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  padding: 0;
}
.ow-faq-item.open .ow-faq-a {
  max-height: 400px;
  padding: 0 0 0.24rem;
}

.ow-contact {
  padding: 0.8rem 0.8rem;
  background: #E88B00;
  text-align: center;
}
.ow-contact h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.42rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.1rem;
}
.ow-contact p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.24rem;
  color: rgba(255,255,255,0.9);
  margin: 0 0 0.24rem;
}
.ow-contact-btns {
  display: flex;
  justify-content: center;
  gap: 0.16rem;
  flex-wrap: wrap;
}
.ow-contact .ow-btn {
  background: #fff;
  color: #E88B00;
  border-color: #fff;
  font-weight: 600;
}
.ow-contact .ow-btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.ow-contact .ow-btn svg {
  fill: #E88B00;
}
.ow-contact .ow-btn:hover svg {
  fill: #fff;
}

@media (max-width: 767px) {
  .ow-hero {
    padding: 2.5rem 0.4rem 1.2rem;
    min-height: 90vh;
  }
  .ow-h1 {
    font-size: 0.64rem;
  }
  .ow-desc {
    font-size: 0.32rem;
    line-height: 1.6;
    max-width: 100%;
  }
  .ow-btns {
    flex-direction: column;
    gap: 0.2rem;
  }
  .ow-btn {
    font-size: 0.28rem;
    padding: 0.2rem 0.4rem;
    justify-content: center;
  }
  .ow-section {
    padding: 1rem 0.4rem;
  }
  .ow-label {
    font-size: 0.24rem;
    margin-bottom: 0.24rem;
  }
  .ow-title {
    font-size: 0.56rem;
  }
  .ow-subdesc {
    font-size: 0.32rem;
    max-width: 100%;
  }
  .ow-cards {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  .ow-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
  }
  .ow-step {
    padding: 0.3rem;
  }
  .ow-step-num {
    font-size: 0.6rem;
  }
  .ow-step-title {
    font-size: 0.3rem;
  }
  .ow-step-text {
    font-size: 0.26rem;
  }
  .ow-card {
    padding: 0.4rem;
    border-radius: 0.16rem;
  }
  .ow-card-icon {
    width: 0.7rem;
    height: 0.7rem;
  }
  .ow-card-icon svg {
    width: 28px;
    height: 28px;
  }
  .ow-card-title {
    font-size: 0.32rem;
  }
  .ow-card-text {
    font-size: 0.28rem;
  }
  .ow-faq {
    max-width: 100%;
  }
  .ow-faq-q {
    font-size: 0.32rem;
    padding: 0.3rem 0.5rem 0.3rem 0;
  }
  .ow-faq-q::after {
    font-size: 0.39rem;
  }
  .ow-faq-a {
    font-size: 0.28rem;
  }
  .ow-contact {
    padding: 0.8rem 0.4rem;
  }
  .ow-contact h2 {
    font-size: 0.48rem;
  }
  .ow-contact p {
    font-size: 0.32rem;
  }
  .ow-contact .ow-btn {
    font-size: 0.28rem;
    padding: 0.2rem 0.4rem;
  }
}
