/* 
 Theme Name:   子主题
 Theme URI:    https://tyiai.com/
 Description:  子主题
 Author:       admin
 Author URI:   https://tyiai.com
 Template:     woostify
 Version:      1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html

 /* == Add your own styles below this line ==
--------------------------------------------*/

/* 评论图片上传样式 */
.comment-form-images {
  margin: 16px 0;
}

.comment-form-images label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #374151;
  font-size: 14px;
}

.comment-images-upload-area {
  position: relative;
}

.comment-images-upload-area input[type="file"] {
  width: 100%;
  padding: 12px;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  background: #f9fafb;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.comment-images-upload-area input[type="file"]:hover {
  border-color: #3b82f6;
  background: #eff6ff;
}

.comment-images-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.comment-image-preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e5e7eb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comment-image-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-image-remove {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  border: 2px solid #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.comment-image-remove:hover {
  background: #dc2626;
  transform: scale(1.1);
}

.comment-images-hint {
  margin-top: 6px;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
}

/* 评论图片展示样式 */
.comment-images-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.comment-image-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  background: #f9fafb;
}

.comment-image-item:hover {
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.comment-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 响应式调整 */
@media (max-width: 640px) {
  .comment-images-gallery {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
  }
  
  .comment-image-preview-item {
    width: 60px;
    height: 60px;
  }
}

.order-form-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.order-form-modal {
  background: #ffffff;
  border-radius: 18px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
  padding: 28px 26px 24px;
  position: relative;
  font-family: inherit;
}

.order-form-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #64748b;
}

.order-form-modal__title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

.order-form-modal__form {
  margin: 0;
}

.order-form-modal__field {
  margin-bottom: 14px;
}

.order-form-modal__field textarea {
  min-height: 44px;
}

.order-form-modal__field label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #4b5563;
}

.order-form-modal__field label span {
  color: #e11d48;
}

.order-form-modal__field input,
.order-form-modal__field textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 9px 11px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.order-form-modal__field input:focus,
.order-form-modal__field textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15);
}

.order-form-modal__actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.order-form-modal__submit {
  border: none;
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  background: #2563eb;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.05s ease;
}

.order-form-modal__submit:hover {
  background: #1d4ed8;
}

.order-form-modal__submit:active {
  transform: translateY(1px);
}

.order-form-modal__message {
  margin-top: 8px;
  font-size: 13px;
}

.order-status-form-trigger {
  border: none;
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  background: #2563eb;
  color: #ffffff;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.05s ease, box-shadow 0.15s ease;
}

.order-status-form-trigger:hover {
  background: #1d4ed8;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.35);
}

.order-status-form-trigger--done {
  background: #16a34a;
}

.order-status-form-trigger--done:hover {
  background: #15803d;
}

.order-fill-alert {
  margin: 22px 0 8px;
  padding: 18px 20px;
  border-radius: 12px;
  background: #fff7e6;
  border: 1px solid #f97316;
  color: #111827;
  box-shadow: 0 10px 26px rgba(249, 115, 22, 0.18);
}

.order-fill-alert__title {
  font-size: 16px;
  font-weight: 800;
  color: #c2410c;
  margin: 0 0 8px;
}

.order-fill-alert__text {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.55;
}

.order-fill-alert__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ea580c;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.05s ease, box-shadow 0.15s ease;
}

.order-fill-alert__btn:hover {
  background: #c2410c;
  box-shadow: 0 10px 18px rgba(234, 88, 12, 0.3);
}

.order-fill-alert__btn:active {
  transform: translateY(1px);
}


/* 固定展示的一条用户好评（short-sleeve-t-shirt 专用） */
.childtheme-static-review {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 12px 0 4px;
  padding: 10px 0 14px;
  border-bottom: 1px solid #e5e7eb;
}

.childtheme-static-review__avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.childtheme-static-review__avatar span {
  transform: translateY(1px);
}

.childtheme-static-review__content {
  flex: 1;
}

.childtheme-static-review__header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  margin-bottom: 4px;
}

.childtheme-static-review__name {
  font-weight: 600;
  color: #111827;
}

.childtheme-static-review__dot {
  color: #9ca3af;
}

.childtheme-static-review__date {
  color: #6b7280;
}

.childtheme-static-review__rating {
  margin-bottom: 4px;
}

.childtheme-static-review__stars {
  color: #f59e0b;
  letter-spacing: 1px;
  font-size: 15px;
}

.childtheme-static-review__text {
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
}

.homepage-faq {
  background: #fafbfc;
  padding: 80px 24px;
  color: #1f2933;
}

.homepage-faq__container {
  max-width: 900px;
  margin: 0 auto;
}

.homepage-faq__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 48px;
  color: #0f172a;
}

.homepage-faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.homepage-faq__item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.homepage-faq__item:hover {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.homepage-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  transition: color 0.2s ease;
}

.homepage-faq__question:hover {
  color: #0f172a;
}

.homepage-faq__icon {
  font-size: 12px;
  color: #64748b;
  transition: transform 0.3s ease, color 0.2s ease;
  flex-shrink: 0;
}

.homepage-faq__item[aria-expanded="true"] .homepage-faq__icon {
  transform: rotate(180deg);
  color: #2f80ed;
}

.homepage-faq__question-text {
  flex: 1;
}

.homepage-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.homepage-faq__item[aria-expanded="true"] .homepage-faq__answer {
  max-height: 500px;
  padding: 0 24px 24px 40px;
}

.homepage-faq__answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

.homepage-product {
  background: linear-gradient(140deg, #e8f2ff 0%, #f5f9ff 60%, #ffffff 100%);
  padding: 90px 24px 80px;
}

.homepage-product__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 30px;
  padding: 42px;
  box-shadow: 0 28px 60px rgba(22, 61, 129, 0.12);
  border: 1px solid #d9e6f8;
}

.homepage-product__media {
  border-radius: 20px;
  background-image: url('https://images.unsplash.com/photo-1506617420156-8e4536971650?auto=format&fit=crop&w=900&q=80');
  background-size: cover;
  background-position: center;
  min-height: 360px;
}

.homepage-product__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #0f172a;
}

.homepage-product__eyebrow {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #2f80ed;
  margin-bottom: 12px;
  font-weight: 700;
}

.homepage-product__title {
  font-size: 40px;
  margin: 0 0 18px;
  line-height: 1.15;
}

.homepage-product__desc {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.65;
  color: #475569;
}

.homepage-product__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.homepage-product__price--compare {
  font-size: 20px;
  color: #98a9c6;
  text-decoration: line-through;
}

.homepage-product__price--current {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
}

.homepage-product__bullets {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
  color: #1f2933;
  font-size: 16px;
}

.homepage-product__bullets li {
  position: relative;
  padding-left: 28px;
}

.homepage-product__bullets li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: -2px;
  font-size: 28px;
  color: #2f80ed;
}

.homepage-product__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  background: #2f80ed;
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(47, 128, 237, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.homepage-product__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(47, 128, 237, 0.35);
}

.homepage-science {
  background: #f9fbff;
  padding: 90px 24px 80px;
  color: #0f172a;
}

.homepage-science__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.homepage-science__copy {
  text-align: left;
}

.homepage-science__title {
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 700;
  color: #0b1a2c;
}

.homepage-science__subtitle {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.65;
  color: #475569;
}

.homepage-science__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.homepage-science__list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}

.homepage-science__list-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e8f3ff;
  color: #2f80ed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.homepage-science__list-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #0f172a;
}

.homepage-science__list-text {
  font-size: 15px;
  color: #5a6675;
}

.homepage-science__card {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  min-height: 320px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 10px 24px rgba(15, 23, 42, 0.08);
}

.homepage-science__card-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2933;
  margin: 0 0 10px;
}

.homepage-science__card-media {
  border-radius: 12px;
  background: #e4ebf5;
  background-image: url('https://mp-2a2ed607-a167-48ee-a7f3-a5a0ff32e273.cdn.bspapp.com/pnggood/u=4266893302,2737023248&fm=253&app=138&f=JPEG.jpeg');
  background-size: cover;
  background-position: center;
  min-height: 280px;
}

.homepage-press-quote {
  background: #f5f9ff;
  padding: 60px 20px 80px;
  text-align: center;
  color: #0f172a;
  border-top: 1px solid #dce7f7;
}

.homepage-press-quote__eyebrow {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #8c8178;
}

.homepage-press-quote__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px 50px;
  margin: 0 auto 36px;
}

.homepage-press-quote__logo {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: #5f6b7a;
}

.homepage-press-quote__quote {
  max-width: 860px;
  margin: 0 auto 22px;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.35;
  color: #1f2933;
}

.homepage-press-quote__author {
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2f80ed;
}

.homepage-contact {
  background: #eef5ff;
  padding: 80px 24px 90px;
}

.homepage-contact__container {
  max-width: 1040px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  box-shadow: 0 18px 38px rgba(13, 63, 132, 0.08);
  border: 1px solid #dce7f7;
}

.homepage-contact__eyebrow {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #2f80ed;
  margin-bottom: 14px;
  font-weight: 700;
}

.homepage-contact__title {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 18px;
  color: #0f172a;
}

.homepage-contact__subtitle {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #475569;
}

.homepage-contact__form {
  display: grid;
  gap: 18px;
}

.homepage-contact__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #1f2933;
}

.homepage-contact__field input,
.homepage-contact__field textarea {
  border: 1px solid #c7d9f0;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  background: #f9fcff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.homepage-contact__field input:focus,
.homepage-contact__field textarea:focus {
  border-color: #2f80ed;
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.15);
  background: #fff;
}

.homepage-contact__submit {
  border: none;
  border-radius: 999px;
  background: #2f80ed;
  color: #fff;
  font-size: 16px;
  padding: 16px 26px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.homepage-contact__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(47, 128, 237, 0.25);
}

.homepage-parallax {
  position: relative;
  background-image: url('https://mp-2a2ed607-a167-48ee-a7f3-a5a0ff32e273.cdn.bspapp.com/pnggood/%E5%AE%A2%E6%88%B7%E5%9B%BE%E7%89%87/32ae582247e54286be4ccd323026e6b4.png.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #eaf2ff;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 24px;
  overflow: hidden;
}

.homepage-parallax__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 24, 54, 0.52) 0%, rgba(28, 73, 129, 0.62) 100%);
}

.homepage-parallax__content {
  position: relative;
  max-width: 880px;
  z-index: 1;
}

.homepage-parallax__eyebrow {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9dc7ff;
  margin-bottom: 16px;
  font-weight: 700;
}

.homepage-parallax__title {
  font-size: 38px;
  line-height: 1.25;
  margin: 0 0 16px;
  font-weight: 700;
}

.homepage-parallax__subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #d7e6ff;
}

.homepage-video {
  background: linear-gradient(135deg, #f7fbff 0%, #eef3f9 100%);
  padding: 90px 24px 70px;
  color: #0f172a;
}

.homepage-video__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.homepage-video__copy {
  text-align: left;
}

.homepage-video__eyebrow {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2f80ed;
  margin-bottom: 14px;
  font-weight: 700;
}

.homepage-video__title {
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 14px;
  font-weight: 700;
  color: #0b1a2c;
}

.homepage-video__subtitle {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.65;
  color: #475569;
}

.homepage-video__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.homepage-video__list li {
  position: relative;
  padding-left: 26px;
  font-size: 17px;
  line-height: 1.6;
  color: #1f2933;
}

.homepage-video__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2f80ed;
  font-weight: 700;
}

.homepage-video__media {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(237, 244, 253, 0.9) 100%);
  border: 1px solid #e5edf7;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 38px rgba(16, 42, 93, 0.12);
  position: relative;
}

.homepage-video__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(47, 128, 237, 0.1);
  color: #1d4ed8;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.homepage-video__player {
  width: 100%;
  border-radius: 14px;
  background: #0b1a2c;
  display: block;
}

.homepage-video__youtube-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 宽高比 */
  border-radius: 14px;
  overflow: hidden;
  background: #0b1a2c;
}

.homepage-video__youtube-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 14px;
}

.homepage-steps {
  padding: 80px 24px 70px;
  text-align: center;
  background: #f8fbff;
  color: #1f2933;
}

.homepage-steps__eyebrow {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2f80ed;
  margin-bottom: 18px;
  font-weight: 700;
}

.homepage-steps__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #121826;
}

.homepage-steps__subtitle {
  max-width: 820px;
  margin: 0 auto 36px;
  font-size: 18px;
  line-height: 1.6;
  color: #5f6b7a;
}

.homepage-steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 1150px;
  margin: 0 auto;
}

.homepage-steps__card {
  background: #fff;
  border: 1px solid #e5edf7;
  border-radius: 14px;
  padding: 32px 26px 34px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(18, 33, 67, 0.06);
  position: relative;
  overflow: hidden;
}

.homepage-steps__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #e8f3ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #2f80ed;
  margin-bottom: 18px;
}

.homepage-steps__number {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 34px;
  font-weight: 700;
  color: #e3e9f2;
}

.homepage-steps__card-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #131a2a;
}

.homepage-steps__card-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5a6675;
}

.homepage-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: #f5f9ff;
  margin: 0;
}

.homepage-feature__media {
  background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1400&q=80');
  background-size: cover;
  background-position: center;
  min-height: 360px;
}

.homepage-feature__content {
  padding: 80px 9% 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #0f172a;
}

.homepage-feature__eyebrow {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: #2f80ed;
}

.homepage-feature__title {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 600;
  font-size: 44px;
  line-height: 1.2;
  margin: 0 0 22px;
  color: #0b1a2c;
}

.homepage-feature__body {
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 24px;
  color: #475569;
}

.homepage-feature__list {
  list-style: disc;
  padding-left: 22px;
  margin: 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
}

.homepage-feature__list li + li {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .homepage-parallax {
    background-attachment: scroll;
    padding: 90px 20px;
  }

  .homepage-parallax__title {
    font-size: 32px;
  }

  .homepage-video__inner {
    grid-template-columns: 1fr;
  }

  .homepage-video {
    padding: 70px 20px 60px;
  }

  .homepage-video__media {
    order: -1;
  }

  .homepage-science {
    padding: 70px 20px;
  }

  .homepage-science__inner {
    grid-template-columns: 1fr;
  }

  .homepage-science__card {
    min-height: 260px;
  }

  .homepage-contact__container {
    grid-template-columns: 1fr;
    padding: 40px 26px;
  }

  .homepage-product__inner {
    grid-template-columns: 1fr;
    padding: 34px;
  }

  .homepage-product__title {
    font-size: 32px;
  }

  .homepage-product__media {
    min-height: 260px;
  }

  .homepage-feature {
    grid-template-columns: 1fr;
  }

  .homepage-feature__content {
    padding: 48px 24px 56px;
  }

  .homepage-feature__title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .homepage-faq {
    padding: 60px 20px;
  }

  .homepage-faq__title {
    font-size: 28px;
    margin-bottom: 36px;
  }

  .homepage-faq__question {
    padding: 18px 20px;
    font-size: 16px;
  }

  .homepage-faq__answer {
    padding: 0 20px;
  }

  .homepage-faq__item[aria-expanded="true"] .homepage-faq__answer {
    padding: 0 20px 20px 36px;
  }

  .homepage-faq__answer p {
    font-size: 15px;
  }

  .homepage-press-quote {
    padding: 48px 18px 60px;
  }

  .homepage-press-quote__logo {
    font-size: 24px;
  }

  .homepage-press-quote__quote {
    font-size: 26px;
  }

  .homepage-press-quote__logos {
    gap: 18px 34px;
  }
}
