/*
 * Knsign Main Custom Styles (Cheil Agency High-End Minimal & High-Contrast Style)
 * Floating Bar, Quote Modal, Philosophy Section, Process Capabilities & Review Gallery
 */

/* ==========================================================================
   1. Floating Quick Bar & Contact Modal
   ========================================================================== */
.knsign-floating-bar {
  position: fixed;
  right: 24px;
  bottom: 30px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: "Noto Sans KR", -apple-system, sans-serif;
}

.knsign-float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 50px;
  background: #000000;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.knsign-float-btn:hover {
  background: #222222;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.knsign-float-btn--phone {
  background: #ffffff;
  color: #000000;
  border: 1px solid #e5e5e5;
}

.knsign-float-btn--phone:hover {
  background: #f5f5f5;
  color: #000000;
}

.knsign-float-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* PC Floating Notice Badge below Phone button (Dark Orange Background) */
.knsign-float-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 11px 14px;
  background: linear-gradient(135deg, #d94e10 0%, #b43e07 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(180, 62, 7, 0.4);
  max-width: 220px;
  box-sizing: border-box;
  margin-top: 2px;
}

.knsign-float-notice svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  flex-shrink: 0;
  margin-top: 2px;
}

.knsign-float-notice-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.knsign-float-notice-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.knsign-float-notice-text strong {
  font-size: 11.5px;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

/* Modal Overlay */
.knsign-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.knsign-modal-overlay.is-active {
  display: flex;
  animation: knsignFadeIn 0.25s ease-out;
}

@keyframes knsignFadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.knsign-modal-container {
  background: #ffffff;
  color: #000000;
  border-radius: 12px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  border: 1px solid #e5e5e5;
  font-family: "Noto Sans KR", sans-serif;
}

.knsign-modal-header {
  padding: 24px 28px;
  background: #000000;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.knsign-modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.knsign-modal-close {
  background: transparent;
  border: none;
  color: #888888;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.knsign-modal-close:hover {
  color: #ffffff;
}

.knsign-modal-body {
  padding: 28px;
}

.knsign-form-group {
  margin-bottom: 20px;
}

.knsign-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}

.knsign-form-group label .req {
  color: #e11d48;
  margin-left: 2px;
}

.knsign-form-control {
  width: 100%;
  padding: 13px 16px;
  background: #f9f9f9;
  border: 1px solid #e5e5e5;
  color: #000000;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.knsign-form-control:focus {
  outline: none;
  border-color: #000000;
  background: #ffffff;
}

textarea.knsign-form-control {
  resize: vertical;
  min-height: 90px;
}

.knsign-file-hint {
  font-size: 12px;
  color: #777777;
  margin-top: 6px;
}

.knsign-btn-submit {
  width: 100%;
  padding: 16px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 10px;
}

.knsign-btn-submit:hover {
  background: #222222;
}

.knsign-form-status {
  margin-top: 14px;
  font-size: 13px;
  text-align: center;
}

.knsign-form-status.is-success {
  color: #16a34a;
}

.knsign-form-status.is-error {
  color: #dc2626;
}


/* ==========================================================================
   2. Cheil Agency Style Brand Philosophy Section (Light Wide Layout)
   ========================================================================== */
.cheil-brand-section {
  padding: 110px 24px;
  background: #ffffff;
  color: #000000;
  font-family: "Noto Sans KR", -apple-system, sans-serif;
  box-sizing: border-box;
  width: 100%;
}

.cheil-brand-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 1.35fr;
  gap: 80px;
}

.cheil-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #777777;
  margin-bottom: 20px;
}

.cheil-tag--light {
  color: rgba(255, 255, 255, 0.5);
}

.cheil-headline {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.035em;
  color: #000000;
  margin: 0;
  word-break: keep-all;
}

.cheil-brand-right {
  display: flex;
  flex-direction: column;
}

.cheil-lead-quote {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  color: #333333;
  margin: 0 0 44px;
  word-break: keep-all;
  letter-spacing: -0.015em;
}

.cheil-capabilities-list {
  border-top: 1px solid #e5e5e5;
  margin-bottom: 36px;
}

.cheil-cap-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #e5e5e5;
  transition: transform 0.25s ease;
}

.cheil-cap-item:hover {
  transform: translateX(6px);
}

.cheil-cap-num {
  font-size: 15px;
  font-weight: 700;
  color: #888888;
  font-family: "Helvetica", Arial, sans-serif;
  flex-shrink: 0;
  margin-top: 2px;
}

.cheil-cap-text h4 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.02em;
}

.cheil-cap-text p {
  margin: 0;
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

.cheil-brand-footer-notice {
  font-size: 14px;
  color: #777777;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cheil-dot {
  color: #cccccc;
}

.cheil-brand-footer-notice a {
  color: #000000;
  font-weight: 700;
  text-decoration: none;
}

.cheil-brand-footer-notice a:hover {
  text-decoration: underline;
}

/* Cheil Agency Review Header Global Style for Template */
.cheil-review-header {
  text-align: center !important;
  margin-bottom: 48px !important;
  width: 100% !important;
  display: block !important;
}

.cheil-review-header.cheil-header--left {
  text-align: left !important;
}

.cheil-review-header .cheil-tag {
  display: inline-block !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #777777 !important;
  margin-bottom: 10px !important;
  font-family: "Helvetica", Arial, sans-serif !important;
}

.cheil-review-header .cheil-headline {
  font-size: 40px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.03em !important;
  color: #000000 !important;
  margin: 0 0 12px !important;
  font-family: "Noto Sans KR", sans-serif !important;
}

.cheil-review-header .cheil-lead-quote {
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #666666 !important;
  margin: 0 !important;
  font-family: "Noto Sans KR", sans-serif !important;
}

/* Dark Header Modifier for Process Steps */
.cheil-review-header.cheil-header--dark .cheil-tag--light {
  color: rgba(255, 255, 255, 0.45) !important;
}

.cheil-review-header.cheil-header--dark .cheil-headline--light {
  color: #ffffff !important;
}

.cheil-review-header.cheil-header--dark .cheil-quote--light {
  color: rgba(255, 255, 255, 0.65) !important;
}


/* ==========================================================================
   3. Cheil Agency Style Process Section (Dark High-Contrast Section)
   ========================================================================== */
.cheil-process-section {
  padding: 110px 24px;
  background: #000000;
  color: #ffffff;
  font-family: "Noto Sans KR", -apple-system, sans-serif;
  box-sizing: border-box;
  width: 100%;
}

.cheil-process-container {
  max-width: 1240px;
  margin: 0 auto;
}

.cheil-process-header {
  margin-bottom: 60px;
}

.cheil-process-header h2 {
  font-size: 40px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

.cheil-process-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.cheil-process-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.cheil-process-row {
  display: grid;
  grid-template-columns: 80px 1.2fr 2fr;
  gap: 40px;
  align-items: center;
  padding: 38px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.cheil-process-row:hover {
  background: rgba(255, 255, 255, 0.04);
  padding-left: 28px;
}

.cheil-row-num {
  font-size: 36px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  font-family: "Helvetica", Arial, sans-serif;
  transition: color 0.3s ease;
}

.cheil-process-row:hover .cheil-row-num {
  color: #ffffff;
}

.cheil-row-title h3 {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}

.cheil-row-sub {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
}

.cheil-row-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}


/* ==========================================================================
   4. Review Photo Gallery Section
   ========================================================================== */
.knsign-reviews-section {
  padding: 100px 24px;
  background: #ffffff;
  color: #000000;
  font-family: "Noto Sans KR", sans-serif;
  border-top: 1px solid #e5e5e5;
}

.knsign-reviews-container {
  max-width: 1240px;
  margin: 0 auto;
}

.knsign-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.knsign-review-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  aspect-ratio: 1 / 1;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
}

.knsign-review-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.knsign-review-item:hover img {
  transform: scale(1.06);
}

/* Category Notice Badge */
.knsign-category-notice {
  display: inline-block;
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fca5a5;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: 4px;
}


/* ==========================================================================
   5. Responsive Mobile Layout (Clean Vertical Adaptation)
   ========================================================================== */
@media (max-width: 992px) {
  .cheil-brand-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cheil-process-row {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .cheil-row-desc {
    grid-column: 1 / -1;
    padding-left: 80px;
    margin-top: -10px;
  }
}

@media (max-width: 768px) {
  .cheil-brand-section,
  .cheil-process-section,
  .knsign-reviews-section {
    padding: 60px 18px;
  }

  .cheil-headline {
    font-size: 30px;
  }

  .cheil-lead-quote {
    font-size: 17px;
    margin-bottom: 30px;
  }

  .cheil-process-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .cheil-process-row:hover {
    padding-left: 10px;
  }

  .cheil-row-desc {
    padding-left: 0;
    margin-top: 0;
  }

  .knsign-reviews-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
  }
}

/* ==========================================================================
   6. Elementor Testimonial Carousel High-End Refined Styling
   ========================================================================== */
.elementor-widget-testimonial-carousel {
  padding: 40px 0;
}

/* Force Equal Height for Swiper Slides & Testimonial Cards */
.elementor-widget-testimonial-carousel .swiper-wrapper {
  display: flex !important;
  align-items: stretch !important;
}

.elementor-widget-testimonial-carousel .swiper-slide {
  height: auto !important;
  display: flex !important;
}

.elementor-widget-testimonial-carousel .elementor-testimonial {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 24px 24px 20px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  width: 100% !important;
}

.elementor-widget-testimonial-carousel .elementor-testimonial:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08) !important;
  border-color: #0f172a !important;
}

.elementor-widget-testimonial-carousel .elementor-testimonial__content {
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Hide speech bubble tail if present */
.elementor-widget-testimonial-carousel .elementor-testimonial__content:after {
  display: none !important;
}

.elementor-widget-testimonial-carousel .elementor-testimonial__text {
  font-size: 15px !important;
  line-height: 1.65 !important;
  color: #1e293b !important;
  font-family: "Noto Sans KR", sans-serif !important;
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.elementor-widget-testimonial-carousel .review-text {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #0f172a !important;
  margin-bottom: 12px !important;
  line-height: 1.6 !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.elementor-widget-testimonial-carousel .review-img-wrap {
  margin-top: auto !important;
  padding-top: 8px !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}

.elementor-widget-testimonial-carousel .review-img-wrap img {
  width: 100% !important;
  height: 165px !important;
  object-fit: cover !important;
  object-position: top center !important;
  border-radius: 10px !important;
  display: block !important;
  border: 1px solid #f1f5f9 !important;
}

.elementor-widget-testimonial-carousel .elementor-testimonial__footer {
  margin-top: 16px !important;
  padding-top: 14px !important;
  border-top: 1px solid #f1f5f9 !important;
}

.elementor-widget-testimonial-carousel .elementor-testimonial__name {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  font-family: "Noto Sans KR", sans-serif !important;
  display: block !important;
}

.elementor-widget-testimonial-carousel .elementor-testimonial__title {
  font-size: 13px !important;
  color: #64748b !important;
  font-weight: 500 !important;
  margin-top: 2px !important;
  font-family: "Noto Sans KR", sans-serif !important;
  display: block !important;
}

/* Swiper Navigation Buttons - Clean Transparent Arrow Icon Only */
.elementor-widget-testimonial-carousel .elementor-swiper-button {
  background: transparent !important;
  color: #0f172a !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: all 0.2s ease !important;
  opacity: 0.65 !important;
}

.elementor-widget-testimonial-carousel .elementor-swiper-button:hover {
  opacity: 1 !important;
  transform: scale(1.2) !important;
  background: transparent !important;
}

.elementor-widget-testimonial-carousel .elementor-swiper-button svg {
  fill: #0f172a !important;
  width: 32px !important;
  height: 32px !important;
}

/* Swiper Pagination Bullets */
.elementor-widget-testimonial-carousel .swiper-pagination-bullet {
  background: #cbd5e1 !important;
  opacity: 0.6 !important;
  transition: all 0.3s ease !important;
}

.elementor-widget-testimonial-carousel .swiper-pagination-bullet-active {
  background: #000000 !important;
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 10px !important;
}

/* ==========================================================================
   7. Full-Screen Editable Hero Slider Section
   ========================================================================== */
.knsign-hero-slider-section {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  min-height: 85vh;
  height: 90vh;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  font-family: "Noto Sans KR", -apple-system, sans-serif;
}

.knsign-hero-swiper {
  width: 100%;
  height: 100%;
}

.knsign-hero-slide {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  box-sizing: border-box;
}

.knsign-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}

.knsign-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.knsign-hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #f59e0b;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-family: "Helvetica", sans-serif;
  backdrop-filter: blur(4px);
}

.knsign-hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.knsign-hero-desc {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  color: #e2e8f0;
  margin: 0 auto 36px;
  max-width: 720px;
}

.knsign-hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.knsign-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 40px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  cursor: pointer;
}

.knsign-hero-btn--primary {
  background: #ffffff;
  color: #000000 !important;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.knsign-hero-btn--primary:hover {
  background: #f8fafc;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.35);
}

.knsign-hero-btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.knsign-hero-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* Hero Controls */
.knsign-hero-button-prev,
.knsign-hero-button-next {
  color: #ffffff !important;
  width: 50px !important;
  height: 50px !important;
  background: rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 50% !important;
  backdrop-filter: blur(4px) !important;
  transition: all 0.25s ease !important;
}

.knsign-hero-button-prev:after,
.knsign-hero-button-next:after {
  font-size: 18px !important;
  font-weight: 900 !important;
}

.knsign-hero-button-prev:hover,
.knsign-hero-button-next:hover {
  background: rgba(0, 0, 0, 0.7) !important;
  border-color: #ffffff !important;
  transform: scale(1.1) !important;
}

.knsign-hero-pagination .swiper-pagination-bullet {
  background: #ffffff !important;
  opacity: 0.4 !important;
  width: 10px !important;
  height: 10px !important;
}

.knsign-hero-pagination .swiper-pagination-bullet-active {
  opacity: 1 !important;
  width: 32px !important;
  border-radius: 10px !important;
  background: #ffffff !important;
}

@media (max-width: 768px) {
  .knsign-hero-slider-section {
    height: 75vh;
    min-height: 520px;
  }
  .knsign-hero-title {
    font-size: 32px;
  }
  .knsign-hero-desc {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .knsign-hero-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }
}

/* Hide Parent Blocksy Default Footers to prevent duplicate footers */
body footer.ct-footer,
body footer.site-footer:not(#cheil-custom-footer),
body footer[data-id="footer"]:not(#cheil-custom-footer) {
  display: none !important;
}

/* ==========================================================================
   8. Cheil Agency Style Minimal Dark Footer
   ========================================================================== */
.cheil-footer-section {
  background: #000000 !important;
  color: #a1a1aa !important;
  border-top: 1px solid #1a1a1a !important;
  padding: 60px 40px 70px !important;
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans KR", sans-serif !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

.cheil-footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* Col 1: Brand Logo & Divider */
.cheil-footer-brand {
  border-right: 1px solid #222222;
  padding-right: 40px;
  height: 100%;
  min-height: 110px;
  display: flex;
  align-items: flex-start;
}

.cheil-footer-logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Col 2 & 3: Menu Headings (QUICK LINKS, POLICY) */
.cheil-menu-heading {
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  color: #f4f4f5 !important;
  margin: 0 0 16px !important;
  text-transform: uppercase !important;
  font-family: "Helvetica", Arial, sans-serif !important;
}

/* WordPress Menus (footer & policy) */
.cheil-footer-menu-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.cheil-footer-menu-list li {
  margin: 0 !important;
  padding: 0 !important;
}

.cheil-footer-menu-list a {
  color: #a1a1aa !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
  line-height: 1.5 !important;
}

.cheil-footer-menu-list a:hover {
  color: #ffffff !important;
}

/* Col 4: Contact & Phone Direct */
.cheil-contact-list p {
  margin: 0 0 8px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.cheil-contact-list a {
  color: #a1a1aa !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.cheil-contact-list a:hover {
  color: #ffffff !important;
}

/* Expanded Business Info Bottom Bar */
.cheil-footer-bottom {
  margin-top: 48px !important;
  padding-top: 32px !important;
  border-top: 1px solid #1c1c1e !important;
  width: 100% !important;
}

.cheil-footer-bottom-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.cheil-business-expanded-info {
  color: #8e8e93 !important;
  font-size: 13px !important;
  line-height: 1.8 !important;
}

.cheil-info-line {
  margin: 0 0 4px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  align-items: center !important;
}

.cheil-bar {
  color: #3f3f46 !important;
  font-size: 11px !important;
}

.cheil-copyright-bar {
  color: #d4d4d8 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  white-space: nowrap !important;
}

@media (max-width: 992px) {
  .cheil-footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .cheil-footer-brand {
    border-right: none;
    padding-right: 0;
    min-height: auto;
  }
  .cheil-footer-info {
    text-align: left;
    grid-column: 1 / -1;
  }
}

@media (max-width: 576px) {
  .cheil-footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cheil-footer-section {
    padding: 40px 20px 50px !important;
  }
}

/* ==========================================================================
   9. Mobile Fixed Bottom Quick Bar (Seamless Stack: 1-Line Notice + 50/50 Buttons)
   ========================================================================== */
.knsign-mobile-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  /* Hide Floating Quick Bar & Triggers on Mobile */
  .knsign-quick-bar-trigger,
  .knsign-quick-bar,
  .knsign-floating-bar,
  #knsignFloatingBar,
  .knsign-floating-quick-bar {
    display: none !important;
  }

  .knsign-mobile-bottom-bar {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
    background: #000000 !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6) !important;
  }

  /* 1-Line Notice Bar right above buttons (No Gap, Dark Orange Background) */
  .knsign-mobile-notice-bar {
    width: 100% !important;
    height: 31px !important;
    min-height: 31px !important;
    background: linear-gradient(90deg, #b43e07 0%, #d94e10 50%, #b43e07 100%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 0 10px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .knsign-mobile-notice-bar svg {
    width: 13px !important;
    height: 13px !important;
    stroke: #ffffff !important;
    flex-shrink: 0 !important;
  }

  .knsign-mobile-notice-bar span {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: -0.02em !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1 !important;
  }

  .knsign-mobile-bottom-actions {
    display: flex !important;
    width: 100% !important;
    height: 50px !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .knsign-mobile-bar-btn {
    flex: 1 1 50% !important;
    width: 50% !important;
    height: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    border-radius: 0 !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    background: #000000 !important;
    color: #ffffff !important;
    transition: background-color 0.2s ease, color 0.2s ease !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
  }

  .knsign-mobile-bar-btn--quote {
    border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
  }

  .knsign-mobile-bar-btn--call {
    border-right: none !important;
  }

  .knsign-mobile-bar-btn svg {
    width: 17px !important;
    height: 17px !important;
    stroke: #ffffff !important;
  }

  .knsign-mobile-bar-btn:hover,
  .knsign-mobile-bar-btn:active {
    background: #18181b !important;
    color: #ffffff !important;
  }

  .knsign-mobile-bar-btn:hover svg,
  .knsign-mobile-bar-btn:active svg {
    stroke: #ffffff !important;
  }

  /* Prevent body content & footer from being overlapped */
  body {
    padding-bottom: 82px !important;
  }
}

/* ==========================================================================
   10. Cheil Agency Style Work Portfolio Grid & Filter Bar
   ========================================================================== */
.cheil-work-section {
  padding: 100px 24px;
  background: #000000;
  color: #ffffff;
  font-family: "Noto Sans KR", -apple-system, sans-serif;
  box-sizing: border-box;
  width: 100%;
}

.cheil-work-container {
  max-width: 1320px;
  margin: 0 auto;
}

/* Filter Bar (Square Minimal Tag Buttons) */
.cheil-work-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.cheil-tab-btn {
  padding: 14px 24px;
  background: #27272a;
  color: #a1a1aa;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  text-transform: uppercase;
  font-family: "Helvetica", sans-serif;
}

.cheil-tab-btn:hover {
  background: #3f3f46;
  color: #ffffff;
}

.cheil-tab-btn.is-active {
  background: #ffffff !important;
  color: #000000 !important;
}

/* Notice Bar for Street Banner */
.cheil-work-notice {
  background: #7f1d1d;
  color: #fca5a5;
  border: 1px solid #ef4444;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeIn 0.3s ease;
}

/* Grid Layout (4 Columns x 3 Rows) */
.cheil-work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 20px;
}

.cheil-work-card {
  position: relative;
  transition: opacity 0.3s ease;
}

.cheil-card-link {
  display: block;
  text-decoration: none !important;
  color: inherit;
}

.cheil-card-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #18181b;
  border-radius: 4px;
  margin-bottom: 14px;
}

.cheil-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cheil-card-link:hover .cheil-card-img-wrap img {
  transform: scale(1.06);
}

.cheil-card-meta {
  padding: 4px 0;
}

.cheil-card-title {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.cheil-card-category {
  font-size: 13px;
  color: #71717a;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .cheil-work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 850px) {
  .cheil-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .cheil-work-grid {
    grid-template-columns: 1fr;
  }
  .cheil-work-card--featured {
    grid-column: span 1;
  }
  .cheil-work-title {
    font-size: 40px;
  }
  .cheil-tab-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* ==========================================================================
   10. Certificate Gallery Grid & Modal Lightbox (사업자등록증, 자격증 등)
   ========================================================================== */
.knsign-cert-section {
  width: 100%;
  padding: 20px 0;
  font-family: 'Noto Sans KR', sans-serif;
}

.knsign-cert-container {
  max-width: 1280px;
  margin: 0 auto;
}

.knsign-cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.knsign-cert-card {
  background: #14171a;
  border: 1px solid #272c33;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}

.knsign-cert-card:hover {
  transform: translateY(-6px);
  border-color: #ffd700;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.knsign-cert-img-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: #000000;
}

.knsign-cert-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.knsign-cert-card:hover .knsign-cert-img-box img {
  transform: scale(1.06);
}

.knsign-cert-zoom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.knsign-cert-card:hover .knsign-cert-zoom-overlay {
  opacity: 1;
}

.knsign-cert-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.knsign-cert-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.knsign-cert-title {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.knsign-cert-desc {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
  line-height: 1.5;
}

/* Lightbox Modal */
.knsign-cert-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.knsign-cert-modal-overlay.is-active {
  display: flex;
  animation: knsignModalFade 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes knsignModalFade {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.knsign-cert-modal-dialog {
  background: #121519;
  border: 1px solid #2e353f;
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  position: relative;
}

.knsign-cert-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
}

.knsign-cert-modal-close:hover {
  background: #ffffff;
  color: #000000;
  transform: rotate(90deg);
}

.knsign-cert-modal-header {
  padding: 24px 30px 16px;
  border-bottom: 1px solid #242a33;
}

.knsign-cert-modal-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #ffd700;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.knsign-cert-modal-header h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.knsign-cert-modal-header p {
  margin: 0;
  font-size: 14px;
  color: #9ca3af;
}

.knsign-cert-modal-body {
  padding: 20px;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #090b0d;
}

.knsign-cert-modal-body img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
  .knsign-cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .knsign-cert-grid {
    grid-template-columns: 1fr;
  }
  .knsign-cert-modal-dialog {
    max-height: 96vh;
  }
  .knsign-cert-modal-header {
    padding: 20px 20px 12px;
  }
  .knsign-cert-modal-header h3 {
    font-size: 18px;
  }
}

/* ==========================================================================
   11. Location & Map Section (오시는 길)
   ========================================================================== */
.knsign-location-section {
  width: 100%;
  padding: 40px 0;
  background: #0d0f12;
  color: #ffffff;
  font-family: "Noto Sans KR", sans-serif;
}

.knsign-location-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.knsign-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  background: #14171c;
  border: 1px solid #272d36;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.knsign-location-map-wrap {
  width: 100%;
  min-height: 380px;
  height: 100%;
  background: #1a1e24;
}

.knsign-location-map-wrap iframe {
  filter: grayscale(0.2) contrast(1.1);
}

.knsign-location-details {
  padding: 36px 36px 36px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.knsign-loc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.knsign-loc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: #ffd700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.knsign-loc-text h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.knsign-loc-text p {
  margin: 0 0 4px;
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.5;
}

.knsign-loc-text p.holiday {
  color: #f87171;
}

.knsign-loc-sub {
  font-size: 12px;
  color: #9ca3af;
}

.knsign-tel-link {
  color: #ffd700;
  font-weight: 700;
  text-decoration: none;
}

.knsign-tel-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .knsign-location-grid {
    grid-template-columns: 1fr;
  }
  .knsign-location-details {
    padding: 30px;
  }
  .knsign-location-map-wrap {
    height: 300px;
    min-height: 300px;
  }
}

/* ==========================================================================
   12. Full-Width GSAP Ad Copywriting Banner (PC: 260px / Mobile: 160px, 중앙정렬)
   ========================================================================== */
.knsign-gsap-banner-section {
  position: relative;
  width: 100%;
  max-height: 260px;
  height: 260px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans KR", sans-serif;
  border-top: 1px solid rgba(255, 215, 0, 0.35);
  border-bottom: 1px solid rgba(255, 215, 0, 0.35);
}

.knsign-gsap-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5,7,10,0.85) 0%, rgba(12,16,22,0.92) 50%, rgba(5,7,10,0.85) 100%);
  z-index: 1;
}

.knsign-gsap-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.knsign-gsap-top-badge {
  margin-bottom: 16px;
}

.knsign-gsap-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #000000;
  background: #ffd700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.knsign-gsap-copy-stage {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
}

.knsign-copy-phrase {
  font-family: "Noto Serif KR", serif;
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.03em;
  text-align: center;
}

.knsign-copy-phrase.phrase-1,
.knsign-copy-phrase.phrase-2 {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
}

.knsign-copy-phrase.phrase-final {
  position: relative;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
  .knsign-gsap-banner-section {
    height: 160px;
    max-height: 160px;
  }
  .knsign-gsap-top-badge {
    margin-bottom: 8px;
  }
  .knsign-gsap-badge {
    font-size: 10px;
    padding: 4px 10px;
  }
  .knsign-gsap-copy-stage {
    min-height: 44px;
  }
  .knsign-copy-phrase {
    font-size: clamp(14px, 4.2vw, 18px);
  }
}

/* ==========================================================================
   14. PC Header Phone Number CTA Button Styling (.ct-header-text[data-id="text"])
   ========================================================================== */
.ct-header-text[data-id="text"] {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.ct-header-text[data-id="text"] .entry-content,
.ct-header-text[data-id="text"] p {
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
}

.ct-header-text[data-id="text"] a[href^="tel:"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  padding: 8px 18px !important;
  background: #000000 !important;
  color: #ffffff !important;
  font-family: "Noto Sans KR", -apple-system, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: -0.01em !important;
  text-decoration: none !important;
  border-radius: 50px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

/* Phone Icon Integration */
.ct-header-text[data-id="text"] a[href^="tel:"]::before {
  content: "" !important;
  display: inline-block !important;
  width: 14px !important;
  height: 14px !important;
  background-color: #ffffff !important;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E") no-repeat center / contain !important;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E") no-repeat center / contain !important;
  flex-shrink: 0 !important;
}

.ct-header-text[data-id="text"] a[href^="tel:"]:hover {
  background: #c2410c !important;
  border-color: #c2410c !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(194, 65, 12, 0.4) !important;
}

.ct-header-text[data-id="text"] a[href^="tel:"] strong {
  color: inherit !important;
  font-weight: 700 !important;
}
