/* ==========================================================================
   FlashArmy 3D-Druk Landing Page
   ========================================================================== */

/* ---------- Variables ---------- */
:root {
  --fa3d-orange: #FF8307;
  --fa3d-orange-hover: #E87500;
  --fa3d-orange-light: #FFF3E6;
  --fa3d-dark: #2D2D2D;
  --fa3d-dark-alt: #3A3A3A;
  --fa3d-text: #333333;
  --fa3d-text-light: #666666;
  --fa3d-bg-light: #F5F5F5;
  --fa3d-bg-white: #FFFFFF;
  --fa3d-border: #E0E0E0;
  --fa3d-border-light: #EEEEEE;
}

/* ---------- General ---------- */
.fa-3d {
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  color: var(--fa3d-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.fa-3d + footer {
  margin-top: 0 !important;
}

.fa-3d img {
  max-width: 100%;
  height: auto;
}

.fa-3d__section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #000000;
}

/* ==========================================================================
   Section 1: Hero
   ========================================================================== */
.fa-3d__hero {
  position: relative;
  background-color: var(--fa3d-dark);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 635px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.fa-3d__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.3) 45%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
}

.fa-3d__hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 80px 0;
}

.fa-3d__hero-title {
  color: #FFFFFF;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}

.fa-3d__hero-title--orange {
  color: var(--fa3d-orange);
}

.fa-3d__hero-mobile-bottom {
  display: none;
}

.fa-3d__hero-desc {
  color: rgba(255, 255, 255, 0.80);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 540px;
}

/* CTA Button */
.fa-3d__cta-btn {
  display: inline-block;
  background-color: var(--fa3d-orange);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 2px solid var(--fa3d-orange);
  cursor: pointer;
}

.fa-3d__cta-btn:hover {
  background-color: var(--fa3d-orange-hover);
  border-color: var(--fa3d-orange-hover);
  color: #FFFFFF;
  text-decoration: none;
  transform: translateY(-1px);
}

.fa-3d__cta-btn--white {
  background-color: #FFFFFF;
  color: var(--fa3d-orange);
  border-color: #FFFFFF;
}

.fa-3d__cta-btn--white:hover {
  background-color: var(--fa3d-bg-light);
  border-color: var(--fa3d-bg-light);
  color: var(--fa3d-orange-hover);
}

/* ==========================================================================
   Section 2: Комплексні рішення
   ========================================================================== */
.fa-3d__solutions {
  background-color: #FFFFFF;
  padding: 60px 0;
}

.fa-3d__solution-card {
  background: #EBEBEB;
  border: none;
  border-radius: 10px;
  padding: 38px 36px;
  height: 100%;
  min-height: 326px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fa-3d__solution-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.fa-3d__solution-card-title {
  font-size: 28px;
  font-weight: 600;
  color: #000000;
  margin: 0;
}

.fa-3d__solution-card-icon {
  flex-shrink: 0;
  margin-left: 12px;
  width: 62px;
  height: 62px;
  background-color: var(--fa3d-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}

.fa-3d__solution-card-icon svg,
.fa-3d__solution-card-icon img {
  width: 36px;
  height: 36px;
}

.fa-3d__solution-card-text {
  font-size: 16px;
  color: #000000;
  line-height: 1.3;
  margin: 0;
}

/* ==========================================================================
   Section 3: Види послуг
   ========================================================================== */
.fa-3d__services {
  background-color: var(--fa3d-bg-white);
  padding: 60px 0;
}

.fa-3d__service-block {
  margin-bottom: 50px;
}

.fa-3d__service-block:last-child {
  margin-bottom: 0;
}

.fa-3d__service-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--fa3d-orange);
}

.fa-3d__service-desc {
  font-size: 16px;
  color: #171717;
  line-height: 1.7;
  margin-bottom: 12px;
}

.fa-3d__service-spec {
  font-size: 14px;
  color: var(--fa3d-text);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Service images */
.fa-3d__service-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fa-3d__service-images--single {
  grid-template-columns: 1fr;
}

.fa-3d__service-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
}

/* Pricing table */
.fa-3d__price-table-wrapper {
  margin-top: 30px;
  border: 1px solid #BDBDBD;
  border-radius: 16px;
  overflow: hidden;
}

.fa-3d__price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.fa-3d__price-table thead th {
  background-color: #FFFFFF;
  color: #171717;
  font-size: 20px;
  font-weight: 500;
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid #BDBDBD;
  border-bottom: 1px solid #BDBDBD;
}

.fa-3d__price-table thead th:last-child {
  border-right: none;
}

.fa-3d__price-table thead th:first-child {
  text-align: center;
}

.fa-3d__price-table tbody td {
  padding: 18px 16px;
  border-right: 1px solid #BDBDBD;
  border-bottom: 1px solid #BDBDBD;
  color: #171717;
  font-size: 16px;
  text-align: center;
  background-color: #FFEEE0;
}

.fa-3d__price-table tbody td:last-child {
  border-right: none;
}

.fa-3d__price-table tbody tr:last-child td {
  border-bottom: none;
}

.fa-3d__price-table tbody td:first-child {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  background-color: #FFFFFF;
}

/* ==========================================================================
   Section 4: Важливо знати
   ========================================================================== */
.fa-3d__important {
  background-color: var(--fa3d-bg-white);
  color: var(--fa3d-text);
  padding: 60px 0;
  text-align: center;
}

.fa-3d__important-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #000000;
}

.fa-3d__important-title--bold {
  font-weight: 700;
}

.fa-3d__important-title--italic {
  color: var(--fa3d-orange);
}

.fa-3d__important-desc {
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto 24px;
  line-height: 1.6;
  color: #000000;
}

.fa-3d__important-format {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 36px;
}

.fa-3d__important-format strong {
  color: var(--fa3d-orange);
}

.fa-3d__important-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.fa-3d__important-upload {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.fa-3d__important-upload-icon {
  width: 42px;
  height: 42px;
  background-color: #E7E7E7;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fa-3d__important-upload-icon img {
  width: 21px;
  height: 21px;
}

.fa-3d__important-upload-text {
  font-size: 15px;
  font-weight: 600;
  color: #110D0A;
  text-align: left;
}

.fa-3d__important-upload-text > span {
  text-decoration: underline;
  text-transform: uppercase;
}

.fa-3d__important-upload-text small {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #110D0A;
}

.fa-3d__cta-btn--dark {
  background-color: var(--fa3d-dark);
  color: #FFFFFF;
  border-color: var(--fa3d-dark);
}

.fa-3d__cta-btn--dark:hover {
  background-color: var(--fa3d-dark-alt);
  border-color: var(--fa3d-dark-alt);
  color: #FFFFFF;
}

/* ==========================================================================
   Section 5: FAQ
   ========================================================================== */
.fa-3d__faq {
  background-color: #E7E7E7;
  padding: 60px 0;
}

.fa-3d__faq .fa-3d__section-title {
  font-size: 24px;
  font-weight: 700;
}

.fa-3d__faq-list {
  max-width: 100%;
  margin: 0 auto;
}

.fa-3d__faq-item {
  background: #FFFFFF;
  border: none;
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
}

.fa-3d__faq-question {
  padding: 28px 80px 28px 32px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: #000000;
  user-select: none;
  transition: color 0.2s ease;
}

/* Remove default marker */
.fa-3d__faq-question::-webkit-details-marker {
  display: none;
}

.fa-3d__faq-question::marker {
  display: none;
  content: '';
}

/* Orange circle with + / - (SVG icon, matching prod .pr-faq-chevron) */
.fa-3d__faq-question::after {
  content: '';
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #F97316;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14'%3E%3Crect x='0' y='6' width='14' height='2' rx='1' fill='%23000'/%3E%3Crect x='6' y='0' width='2' height='14' rx='1' fill='%23000'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: background-color 0.25s ease;
}

.fa-3d__faq-item[open] > .fa-3d__faq-question::after {
  background-color: #FDBA74;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14'%3E%3Crect x='0' y='6' width='14' height='2' rx='1' fill='%23000'/%3E%3C/svg%3E");
}

.fa-3d__faq-item[open] > .fa-3d__faq-question {
  color: #000000;
}

.fa-3d__faq-answer {
  padding: 0 32px 28px 32px;
  max-width: calc(100% - 80px);
  font-size: 16px;
  color: #000000;
  line-height: 1.7;
}

.fa-3d__faq-answer p {
  margin: 0;
}

/* ==========================================================================
   Section 6: Contact / Footer
   ========================================================================== */
.fa-3d__contact {
  background-color: var(--fa3d-dark);
  color: #FFFFFF;
  padding: 50px 0 40px;
}

.fa-3d__contact-heading {
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 16px;
  color: #DEDEDE;
}

.fa-3d__contact-list {
  list-style: disc;
  padding: 0 0 0 18px;
  margin: 0;
}

.fa-3d__contact-list--no-bullets {
  list-style: none;
  padding-left: 0;
}

.fa-3d__contact-list li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #DEDEDE;
}

.fa-3d__contact-list a {
  color: #DEDEDE;
  text-decoration: none;
  transition: color 0.2s ease;
}

.fa-3d__contact-list a:hover {
  color: var(--fa3d-orange);
  text-decoration: none;
}

.fa-3d__contact-link--orange {
  color: var(--fa3d-orange);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

.fa-3d__contact-link--orange:hover {
  color: var(--fa3d-orange-hover);
  text-decoration: none;
}

.fa-3d__contact-phone {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.fa-3d__contact-phone a {
  color: #DEDEDE;
  text-decoration: none;
}

.fa-3d__contact-phone a:hover {
  color: var(--fa3d-orange);
}

.fa-3d__contact-address {
  font-size: 16px;
  color: #DEDEDE;
  margin-top: 12px;
}

.fa-3d__contact-social {
  margin-top: 20px;
}

.fa-3d__contact-social-label {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #DEDEDE;
  margin-bottom: 12px;
}

.fa-3d__contact-social-links {
  display: flex;
  gap: 14px;
}

.fa-3d__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.fa-3d__social-link:hover {
  background: var(--fa3d-orange);
  color: #FFFFFF;
}

.fa-3d__social-link svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   Modal
   ========================================================================== */
.fa-3d__modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  /* Must exceed every fixed widget on the site:
     `.pr-mobile-bottom-nav` = 12001, `#bingc-phone-button` = 200001.
     Using 999999 gives headroom for any future 3rd-party widget too. */
  z-index: 999999;
  align-items: center;
  justify-content: center;
}

.fa-3d__modal-overlay.fa-3d__modal-overlay--active {
  display: flex;
}

.fa-3d__modal {
  background: var(--fa3d-bg-white);
  border-radius: 11px;
  /* Figma: top 50px, left/right 75px, bottom 42px (modal 798×694, fields 648 wide centered) */
  padding: 50px 75px 42px;
  max-width: 798px;
  width: 94%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: fa3dModalIn 0.25s ease-out;
  max-height: 94vh;
  overflow-y: auto;
}

@keyframes fa3dModalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.fa-3d__modal-close {
  position: absolute;
  /* Figma: 21px from top, 20px from right of modal; 45×45 hit area,
     the circle + X is inside the SVG itself (icon-close.svg) */
  top: 21px;
  right: 20px;
  width: 45px;
  height: 45px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fa-3d__modal-close-icon {
  display: block;
  width: 45px;
  height: 45px;
}

.fa-3d__modal-close:hover {
  opacity: 0.7;
}

.fa-3d__modal-close:active {
  transform: scale(0.96);
}

.fa-3d__modal-title {
  /* Figma: SemiBold 28px, line-height normal (~1.3), wraps inside 378px */
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  color: #110D0A;
  margin: 0 auto 22px;
  max-width: 378px;
  line-height: 1.3;
}

/* Form */
.fa-3d__form {
  display: flex;
  flex-direction: column;
  /* Figma: 10px vertical gap between fields */
  gap: 10px;
}

.fa-3d__form-field {
  position: relative;
}

.fa-3d__input {
  /* Figma: single-line field 648×75, bg rgba(0,0,0,.05), radius 6px, text 16px #110D0A, 25px L padding */
  width: 100%;
  height: 75px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 25px;
  font-size: 16px;
  line-height: 1.3;
  color: #110D0A;
  font-family: inherit;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  outline: none;
}

.fa-3d__input::placeholder {
  color: #110D0A;
  opacity: 1;
}

.fa-3d__input:focus {
  border-color: var(--fa3d-orange);
  background: rgba(0, 0, 0, 0.02);
}

.fa-3d__input--error {
  border-color: #E53935;
  background: rgba(229, 57, 53, 0.05);
}

.fa-3d__textarea {
  /* Figma: 648×174, placeholder anchored 28px from top/left 25px */
  height: 174px;
  min-height: 174px;
  resize: vertical;
  padding: 28px 25px;
  line-height: 1.3;
}

.fa-3d__textarea::placeholder {
  line-height: 1.3;
}

.fa-3d__input-required {
  /* Figma: asterisk at top 10px, ~23px from right edge of input */
  position: absolute;
  top: 10px;
  right: 23px;
  font-size: 16px;
  line-height: 1.3;
  color: #110D0A;
  pointer-events: none;
}

.fa-3d__input-error {
  display: block;
  font-size: 13px;
  color: #E53935;
  margin-top: 6px;
  padding-left: 6px;
  min-height: 0;
}

.fa-3d__input-error:empty {
  margin-top: 0;
}

.fa-3d__form-actions {
  /* Figma: gap 24px, action row top 882 with field 3 ending at 830 → 52px margin */
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.fa-3d__form-upload {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  margin: 0;
  background: transparent;
  border: none;
  padding: 0;
}

.fa-3d__form-file {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.fa-3d__form-upload-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}

.fa-3d__form-upload-label {
  font-size: 15px;
  font-weight: 600;
  color: #110D0A;
  text-decoration: underline;
  text-transform: uppercase;
  word-break: break-all;
  max-width: 240px;
}

.fa-3d__form-upload-hint {
  font-size: 14px;
  font-weight: 400;
  color: rgba(17, 13, 10, 0.6);
}

.fa-3d__form-submit {
  /* Figma: 76px height, 0 radius, pad 26 top / 27 bottom / 64-65 horizontal, 18px SemiBold uppercase */
  margin-left: auto;
  height: 76px;
  min-height: 76px;
  border-radius: 0;
  border: none;
  padding: 26px 64px 27px 65px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: var(--fa3d-orange);
}

.fa-3d__form-submit:hover {
  border-radius: 0;
  transform: none;
}

.fa-3d__form-error-general {
  color: #E53935;
  font-size: 14px;
  margin: 8px 0 0;
  text-align: center;
  min-height: 0;
}

.fa-3d__form-error-general:empty {
  margin-top: 0;
}

/* Clicking paperclip outside the modal still behaves like a button */
.fa-3d__important-upload--btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

/* Success state — Figma node 12082:1093
   Modal 798×554, content group starts top 477 (icon+text, 384px wide, gap 13px),
   button at top 622 (264×76, border 1px #110D0A, no radius, transparent bg). */
.fa-3d__modal-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  padding: 171px 0 78px;
  text-align: center;
}

.fa-3d__modal-success[hidden] {
  display: none;
}

.fa-3d__modal-success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  max-width: 100%;
}

.fa-3d__modal-success-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fa-3d__modal-success-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.fa-3d__modal-success-text {
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
  color: #110D0A;
  margin: 0;
  white-space: nowrap;
}

.fa-3d__cta-btn--outline {
  /* Figma: 264×76, border 1px solid #110D0A, no radius, transparent bg,
     18px SemiBold uppercase, line-height 1.3, padding 26px 65px 27px 64px */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #110D0A;
  border: 1px solid #110D0A;
  border-radius: 0;
  height: 76px;
  min-height: 76px;
  padding: 26px 64px 27px 65px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
}

.fa-3d__cta-btn--outline:hover {
  background: #110D0A;
  border-color: #110D0A;
  color: #FFFFFF;
  transform: none;
}

/* Mobile tweaks for modal — Figma node 12105:916 (351px-wide viewport) */
@media (max-width: 575px) {
  .fa-3d__modal {
    /* Figma: modal 351px wide, radius 11px, content column 327px wide
       → horizontal padding 12px; title at top 50px; last action row ends at ~519px,
       giving ~21–24px bottom breathing room */
    padding: 50px 12px 24px;
    border-radius: 11px;
    width: calc(100% - 24px);
    max-width: 351px;
  }

  .fa-3d__modal-close {
    /* Figma: 24×24 icon button, 10px from top and right of modal */
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: transparent;
  }

  .fa-3d__modal-close-icon {
    width: 24px;
    height: 24px;
  }

  .fa-3d__modal-close:hover {
    background: transparent;
    opacity: 0.7;
  }

  .fa-3d__modal-title {
    /* Figma: SemiBold 20px, centered, max-width 302px, black #000 */
    font-size: 20px;
    line-height: 1.2;
    color: #000000;
    max-width: 302px;
    margin: 0 auto 33px;
  }

  .fa-3d__form {
    /* Figma: 10px gap between input fields (135 → 197 → 259 with 52/62px blocks) */
    gap: 10px;
  }

  .fa-3d__input {
    /* Figma: field 327×52, bg rgba(0,0,0,.05), radius 6px, text 16px Regular #000, 25px L padding */
    height: 52px;
    padding: 0 25px;
    font-size: 16px;
    color: #000000;
  }

  .fa-3d__textarea {
    /* Figma: 327×160, placeholder at 16px from top, 25px left */
    height: 160px;
    min-height: 160px;
    padding: 16px 25px;
  }

  .fa-3d__input-required {
    /* Figma: asterisk at top 10px of field, ~17px from field right edge (327−305) */
    top: 10px;
    right: 17px;
  }

  .fa-3d__form-actions {
    /* Figma: vertical stack, gap 24px; action row starts 24px below textarea end */
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    margin-top: 24px;
  }

  .fa-3d__form-upload {
    /* Figma: flex row, icon (42×42) + text block, gap 14px, left-aligned */
    align-self: flex-start;
    gap: 14px;
  }

  .fa-3d__form-submit {
    /* Figma: full-width, 76px tall, radius 0, 18px SemiBold uppercase */
    margin-left: 0;
    width: 100%;
    height: 76px;
    min-height: 76px;
    border-radius: 0;
    padding: 26px 20px 27px;
    font-size: 18px;
  }

  .fa-3d__modal-success {
    padding: 80px 0 40px;
    gap: 40px;
  }

  .fa-3d__modal-success-content {
    width: 100%;
    gap: 13px;
  }

  .fa-3d__modal-success-icon {
    width: 56px;
    height: 56px;
  }

  .fa-3d__modal-success-text {
    font-size: 20px;
    line-height: normal;
    white-space: normal;
  }

  .fa-3d__cta-btn--outline {
    width: 100%;
    height: 60px;
    min-height: 60px;
    padding: 18px 20px;
    font-size: 16px;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet */
@media (max-width: 991px) {
  .fa-3d__hero {
    min-height: 480px;
  }

  .fa-3d__hero-content {
    padding: 60px 0;
  }

  .fa-3d__hero-title {
    font-size: 30px;
  }

  .fa-3d__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .fa-3d__service-title {
    font-size: 24px;
  }

  .fa-3d__important-title {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .fa-3d__hero {
    min-height: auto;
    text-align: left;
    overflow: visible;
    align-items: stretch;
  }

  .fa-3d__hero-overlay {
    display: none;
  }

  .fa-3d__hero-content {
    padding: 30px 15px 40px;
    max-width: 100%;
  }

  .fa-3d__hero-title {
    font-size: 24px;
  }

  .fa-3d__hero-desc {
    font-size: 13px;
  }

  .fa-3d__hero-content {
    visibility: hidden;
    padding: 0;
    height: 0;
  }

  .fa-3d__hero {
    min-height: 250px;
  }

  .fa-3d__hero-mobile-bottom {
    display: block;
    background-color: #FFFFFF;
    padding: 24px 0;
  }

  .fa-3d__hero-mobile-title {
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .fa-3d__hero-mobile-bottom .fa-3d__hero-desc {
    color: #000000;
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .fa-3d__cta-btn {
    font-size: 14px;
    padding: 14px 24px;
  }

  .fa-3d__hero-mobile-bottom .fa-3d__cta-btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  .fa-3d__solutions {
    padding: 40px 0;
  }

  .fa-3d__solution-card {
    padding: 28px 24px;
    min-height: auto;
  }

  .fa-3d__solution-card-title {
    font-size: 20px;
    max-width: 60%;
  }

  .fa-3d__solution-card-top {
    margin-bottom: 24px;
  }

  .fa-3d__solution-card-text {
    font-size: 14px;
  }

  .fa-3d__solution-card-icon {
    width: 48px;
    height: 48px;
  }

  .fa-3d__solution-card-icon svg,
  .fa-3d__solution-card-icon img {
    width: 28px;
    height: 28px;
  }

  .fa-3d__solutions .fa-3d__section-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .fa-3d__services {
    padding: 40px 0;
  }

  .fa-3d__service-block .row {
    --bs-gutter-y: 0;
  }

  .fa-3d__service-images {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .fa-3d__service-img {
    max-height: 280px;
  }

  .fa-3d__price-table {
    min-width: auto;
    font-size: 12px;
    table-layout: fixed;
    width: 100%;
  }

  .fa-3d__price-table thead th,
  .fa-3d__price-table tbody td {
    padding: 10px 6px;
    font-size: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .fa-3d__price-table thead th,
  .fa-3d__price-table tbody td:first-child {
    font-size: 12px;
  }

  .fa-3d__section-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .fa-3d__service-title {
    font-size: 22px;
  }

  .fa-3d__service-desc {
    font-size: 14px;
  }

  .fa-3d__important {
    padding: 40px 0;
  }

  .fa-3d__important-title {
    font-size: 22px;
  }

  .fa-3d__faq {
    padding: 40px 0;
  }

  .fa-3d__faq-question {
    font-size: 16px;
    padding: 18px 40px 18px 20px;
  }

  .fa-3d__faq-question::after {
    content: '';
    width: 14px;
    height: 8px;
    right: 20px;
    border-radius: 0;
    background: transparent url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center !important;
  }

  .fa-3d__faq-item[open] > .fa-3d__faq-question::after {
    background: transparent url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7L7 1L13 7' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center !important;
  }

  .fa-3d__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 14px;
  }

  .fa-3d__important-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .fa-3d__important-actions .fa-3d__cta-btn {
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 16px 24px;
  }

  .fa-3d__contact {
    padding: 40px 0 30px;
    text-align: center;
  }

  .fa-3d__contact-social-links {
    justify-content: center;
  }

  /* FLA-073: on mobile the theme's `.pr-mobile-bottom-nav` sits at
     bottom:16px with height 52px (top edge at ~68px from bottom). The
     Binotel callback widget injects `style="bottom: 7%"` inline via JS,
     which puts its lower ~11px behind the nav. Inline styles always beat
     selector-based rules unless we use `!important` — that's why it's
     needed here. 80px clears the 68px nav-top with a 12px breathing gap. */
  .bingc-phone-button {
    bottom: 80px !important;
  }
}


