/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #00833f;
  --green-light: #eff9f4;
  --green-mid: #b9e1cc;
  --dark: #252525;
  --text: #1a1a1a;
  --text-muted: #605d60;
  --border: #e0e0e0;
  --white: #ffffff;
  --red: #d72023;
  --red-bg: #fbe9e9;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-size: 44px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.8;
}

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  transition: all 0.3s ease-out;
}

#header.scrolled {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

#header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.5px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--green);
  color: var(--green);
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.btn-phone:hover { background: var(--green); color: #fff; }
.btn-phone svg { flex-shrink: 0; }

.btn-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.btn-contact:hover { opacity: 0.88; }

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 802px;
  overflow: hidden;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero.png') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-heading {
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.hero-heading span {
  font-weight: 900;
}

.hero-sub {
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  line-height: 1.8;
  max-width: 560px;
}

/* ===== SECTION ISSUE ===== */
#section-issue {
  padding: 100px 0 80px;
  background: #fff;
}

.issue-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.issue-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
}

.issue-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.issue-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.issue-card-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== SECTION ANALYSIS ===== */
#section-analysis {
  padding: 100px 0;
  background: var(--green-light);
}

#section-analysis .section-title {
  color: var(--green);
}

.analysis-widget {
  background: #fff;
  border-radius: 16px;
  padding: 48px 60px;
  max-width: 760px;
  margin: 48px auto 0;
  box-shadow: 0 4px 24px rgba(0,131,63,0.08);
}

.analysis-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.analysis-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.analysis-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.analysis-input, .analysis-select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  color: var(--text);
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
}

.analysis-input:focus, .analysis-select:focus { border-color: var(--green); }
.analysis-input::placeholder { color: #bbb; }

.analysis-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .analysis-widget { padding: 32px 24px; }
}

.btn-analyze {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--green);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-analyze:hover { opacity: 0.88; }
.btn-analyze:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 1;
}

/* ===== SECTION WORKER ===== */
#section-worker {
  padding: 100px 0;
  background: #fff;
}

.worker-cards {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 64px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.worker-card { position: relative; }

.worker-thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.worker-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s;
}
.worker-thumb:hover img { transform: scale(1.03); }
.video-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.video-badge::before {
  content: '動画';
  font-size: 12px;
}

.video-number {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-top: 16px;
  margin-bottom: 8px;
}

.worker-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.worker-nationality {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== IMAGES GALLERY ===== */
#section-images {
  padding: 0 0 80px;
  background: #fff;
  overflow: hidden;
}

.gallery-carousel {
  width: 100%;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 16px;
  animation: gallery-scroll 18s linear infinite;
  width: max-content;
}

.gallery-track:hover {
  animation-play-state: paused;
}

@keyframes gallery-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  width: 480px;
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .gallery-item { width: 280px; }
  .gallery-item img { height: 200px; }
}

/* ===== SECTION FAQ ===== */
#section-faq {
  padding: 100px 0;
  background: #fff;
}

.faq-list {
  max-width: 860px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--green-light);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  cursor: pointer;
  gap: 16px;
}

.faq-q-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
}

.faq-q-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--green);
  transition: transform 0.3s;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 28px 24px 28px;
}

.faq-item.open .faq-answer { display: block; }

.faq-a-text {
  display: flex;
  gap: 12px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

.faq-a-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

/* ===== CTA SECTION ===== */
#section-cta {
  padding: 100px 0 80px;
  background: var(--green-light);
}

.cta-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 60px;
  max-width: 860px;
  margin: 48px auto 40px;
  box-shadow: 0 4px 32px rgba(0,131,63,0.08);
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.form-field { display: flex; flex-direction: column; gap: 8px; }

.field-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
}

.badge-required {
  background: var(--red-bg);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.badge-optional {
  background: #eee;
  color: #7f7f7f;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.form-input, .form-textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  color: var(--text);
}
.form-input:focus, .form-textarea:focus { border-color: var(--green); }
.form-input::placeholder, .form-textarea::placeholder { color: #bbb; }

.form-textarea {
  height: 120px;
  resize: vertical;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--green);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.88; }

.cta-bottom-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 40px;
}

.cta-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 2px 16px rgba(0,131,63,0.07);
}

.cta-card-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.phone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 36px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.phone-icon { font-size: 28px; }

.phone-hours {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

.cta-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-analyze-sm {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s;
}
.btn-analyze-sm:hover { opacity: 0.88; }

.cta-tagline {
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.8;
  max-width: 860px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--dark);
  color: #fff;
  padding: 60px 0 0;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 48px;
}

.footer-link {
  font-size: 14px;
  color: #d1d5dc;
  transition: color 0.2s;
}
.footer-link:hover { color: #fff; }

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #a5a5a5;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .header-inner { padding: 0 20px; }
  .logo { font-size: 18px; }
  .btn-phone { display: none; }
  .btn-contact { padding: 8px 14px; font-size: 14px; }

  #hero { height: 480px; }
  .hero-content { padding: 0 24px; }
  .hero-heading { font-size: 30px; }
  .hero-sub { font-size: 14px; }

  .section-title { font-size: 28px; }
  .section-desc { font-size: 15px; }

  #section-issue { padding: 60px 0; }
  .issue-cards { grid-template-columns: 1fr; gap: 16px; }
  .issue-card { padding: 28px 24px; }

  #section-analysis { padding: 60px 0; }
  .analysis-widget { padding: 24px 20px; }

  #section-worker { padding: 60px 0; }
  .worker-cards { gap: 40px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 60px;
    gap: 12px;
  }
  .gallery-item img { height: 220px; }

  #section-faq { padding: 60px 0; }

  #section-cta { padding: 60px 0; }
  .cta-form-card { padding: 28px 20px; }
  .cta-bottom-cards { grid-template-columns: 1fr; }
  .phone-number { font-size: 28px; }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
    padding: 0 20px 32px;
  }
  .footer-nav { grid-template-columns: 1fr; gap: 12px; }
}

/* ===== CONTACT FORM 7 ===== */
.wpcf7-form .form-fields { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.wpcf7-form .form-field { display: flex; flex-direction: column; gap: 8px; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  color: var(--text);
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus { border-color: var(--green); }
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder { color: #bbb; }
.wpcf7-form textarea { height: 160px; resize: vertical; }
.wpcf7-form .wpcf7-not-valid { border-color: var(--red) !important; }
.wpcf7-form .wpcf7-not-valid-tip { color: var(--red); font-size: 12px; margin-top: 4px; }
.wpcf7-form .wpcf7-response-output { margin-top: 16px; padding: 12px 16px; border-radius: 8px; font-size: 14px; }

/* ===== ANALYSIS MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--green-light);
  border-radius: 20px;
  padding: 40px;
  max-width: 560px;
  width: 90%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
  background: none;
  border: none;
  line-height: 1;
}
.modal-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: var(--text);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--green-mid);
}
.modal-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.modal-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
}
.modal-card-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.modal-card-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.modal-total-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.modal-total-unit {
  font-size: 20px;
  font-weight: 700;
}
.modal-total-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}
.modal-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.modal-area-tag {
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.modal-visa-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.modal-visa-tag {
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.modal-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.modal-btn-contact {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  text-align: center;
  transition: opacity 0.2s;
}
.modal-btn-contact:hover { opacity: 0.88; color: #fff; }
.modal-btn-retry {
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .modal-section { grid-template-columns: 1fr; }
  .modal-total-num { font-size: 36px; }
}
.modal-worker-img {
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
}
.modal-worker-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
/* ヒーローCTAボタン */
.btn-hero-cta {
  display: inline-block;
  margin-top: 32px;
  padding: 16px 40px;
  background: #00833f;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(0,131,63,0.35);
  transition: background 0.2s, transform 0.1s;
  width: auto;
  max-width: 280px;
}
.btn-hero-cta:hover {
  background: #006830;
  color: #fff;
  transform: translateY(-2px);
}
/* ===== 紹介事例セクション ===== */
#section-cases {
  padding: 80px 0;
  background: #fff;
}
.case-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.case-card {
  background: #f8faf8;
  border: 1.5px solid #d4eadc;
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
}
.case-job {
  font-size: 18px;
  font-weight: 700;
  color: #00833f;
  margin-bottom: 4px;
}
.case-license {
  font-size: 13px;
  color: #555;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d4eadc;
}
.case-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-list li {
  font-size: 14px;
  color: #333;
  display: flex;
  gap: 8px;
}
.case-label {
  font-weight: 600;
  color: #00833f;
  min-width: 64px;
  flex-shrink: 0;
}
.case-badge {
  display: inline-block;
  background: #00833f;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .case-cards {
    grid-template-columns: 1fr;
  }
}
/* ===== ヘッダーロゴ強制サイズ ===== */
.logo-img {
  height: 40px !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important;
}

/* ヘッダー自体の高さも念のため固定 */
#header .logo {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
}

/* スマホ */
@media (max-width: 768px) {
  .logo-img {
    height: 32px !important;
  }
}
/* ===== フッターロゴ ===== */
.footer-logo-img {
  height: 36px !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important;
}

/* スマホ */
@media (max-width: 768px) {
  .footer-logo-img {
    height: 28px !important;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}
.recaptcha-notice {
  font-size: 11px;
  color: #999;
  margin-top: 8px;
}
/* ヘッダー スマホ対応 */
@media (max-width: 768px) {
  header#header {
    padding-bottom: 32px;
    background: #fff;
  }

  .header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px 0;
    gap: 8px;
    background: #fff;
  }

  .logo img {
    height: 32px;
    width: auto;
  }

  .btn-contact {
    width: 100%;
    justify-content: center;
    font-size: 16px !important;
    padding: 12px !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
  }

  .btn-phone {
    display: none;
  }

  .btn-contact svg,
  .btn-contact img,
  .btn-contact i {
    display: none !important;
  }
}
@media (max-width: 768px) {
  header#header {
    padding-bottom: 32px;
    background: #fff;
  }

  header#header.scrolled {
    background: #fff !important;
  }

  .header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px 0;
    gap: 8px;
    background: #fff;
  }

  .logo img {
    height: 32px;
    width: auto;
  }

  .btn-contact {
    width: 100%;
    justify-content: center;
    font-size: 16px !important;
    padding: 12px !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
  }

  .btn-phone {
    display: none;
  }

  .btn-contact svg,
  .btn-contact img,
  .btn-contact i {
    display: none !important;
  }
}