@charset "UTF-8";
.hero-section {
  padding: 80px 0;
  background: var(--color-bg);
}
@media (max-width: 768px) {
  .hero-section {
    padding: 48px 0;
  }
}

.hero-content {
  margin-top: 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
@media (max-width: 1280px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

.hero-image {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  padding-top: 0px;
}
.hero-image img {
  border-radius: var(--radius-lg);
  grid-column: 1/span 11;
  grid-row: 1/span 12;
}
@media (max-width: 1024px) {
  .hero-image {
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .hero-image {
    position: static;
  }
}

@media (max-width: 1024px) {
  .hero-image-placeholder {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .hero-image-placeholder {
    width: 100%;
    margin-bottom: 16px;
  }
}

.hero-blurbs-wrapper {
  grid-column: 8/span 6;
  grid-row: 3/span 12;
}

.hero-blurb {
  background: var(--color-grey);
  border-radius: var(--radius-lg);
  padding: 20px;
  width: 270px;
  z-index: 2;
}
.hero-blurb:not(:first-child) {
  margin-top: 16px;
}
.hero-blurb h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text);
}
.hero-blurb p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 1024px) {
  .hero-blurb {
    max-width: none;
    width: 100%;
    padding: 16px 18px;
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .hero-blurb {
    position: static;
    max-width: 100%;
    box-shadow: none;
    border: 1px solid var(--color-border);
    margin-bottom: 12px;
  }
}

.why-us-section {
  padding: 80px 0;
  background: var(--color-bg-alt);
}
@media (max-width: 768px) {
  .why-us-section {
    padding: 48px 0;
  }
}

.why-us-heading {
  text-align: center;
  margin-bottom: 48px;
}
.why-us-heading h2 {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .why-us-heading h2 {
    font-size: 1.75rem;
  }
}

.why-us-tagline {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}
@media (max-width: 768px) {
  .why-us-tagline {
    font-size: 1.5rem;
  }
}

.why-us-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 960px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.why-us-image-placeholder {
  background: #e0dce6;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  width: 100%;
  height: 100%;
}
@media (max-width: 960px) {
  .why-us-image-placeholder {
    height: 450px;
  }
}

.why-us-image {
  height: 100%;
}
.why-us-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 960px) {
  .why-us-image img {
    object-position: 0 20%;
  }
}

.why-us-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 28px;
}

.why-us-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 8px;
}
@media (max-width: 1280px) {
  .why-us-stat-number {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .why-us-stat-number {
    font-size: 1.5rem;
  }
}

.why-us-stat p {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin: 0;
}

.why-us-body {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.why-us-highlight {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
}
.why-us-highlight strong {
  color: var(--color-primary);
}

.image-cards-section {
  padding: 80px 0;
  background: var(--color-dark);
  color: var(--color-white);
}
.image-cards-section .section-header p,
.image-cards-section .section-header h2,
.image-cards-section p,
.image-cards-section h2 {
  color: var(--color-white);
}
@media (max-width: 768px) {
  .image-cards-section {
    padding: 48px 0;
  }
}

.image-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .image-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  aspect-ratio: 4/3;
  text-decoration: none;
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.image-card:hover img {
  transform: scale(1.05);
}

.image-card-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: var(--shadow);
}

.promo-section {
  background: var(--color-bg);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
@media (max-width: 1200px) {
  .promo-grid {
    grid-template-columns: 40% 60%;
  }
}
@media (max-width: 1024px) {
  .promo-grid {
    grid-template-columns: 1fr;
  }
}

.promo-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px 60px 0;
  max-width: calc(var(--container-width) / 2);
  margin-left: auto;
  padding-left: 24px;
}
.promo-content h2 {
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}
.promo-content h2 strong {
  font-weight: 800;
}
.promo-content p {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.promo-content .btn {
  align-self: flex-start;
  margin-top: 16px;
}
@media (max-width: 1024px) {
  .promo-content {
    padding: 48px 24px;
    max-width: none;
    margin-left: 0;
  }
}

.promo-image {
  position: relative;
  overflow: hidden;
}
.promo-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .promo-image {
    min-height: 600px;
  }
  .promo-image > img {
    object-position: 80%;
  }
}

.promo-overlay {
  position: absolute;
  top: 0;
  left: 3%;
  width: 87%;
  height: 100%;
}

.promo-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.promo-icon {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.promo-icon svg {
  width: 50%;
  height: 50%;
}
@media (max-width: 1280px) {
  .promo-icon {
    display: none;
  }
}

.promo-blurb {
  position: absolute;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  max-width: 220px;
  z-index: 2;
  color: var(--color-text);
  border: 2px solid var(--color-primary);
}
.promo-blurb p {
  font-size: 0.8125rem;
  color: var(--color-text);
  line-height: 1.5;
  margin: 0;
}
.promo-blurb h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-text);
}
.promo-blurb--1 {
  top: 8%;
  right: 45%;
}
.promo-blurb--2 {
  top: 50%;
  right: 40%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .promo-blurb--2 {
    right: auto;
  }
}
.promo-blurb--3 {
  bottom: 8%;
  right: 45%;
}

.carousel-section {
  padding: 80px 0;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.carousel-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .carousel-tabs {
    gap: 12px;
  }
}

.carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}
.carousel-arrow:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.carousel-tab-window {
  overflow: hidden;
}

.carousel-tab-window-inner {
  display: flex;
  align-items: center;
  transition: transform 0.4s ease;
}

.carousel-tab {
  background: none;
  border: none;
  font-family: var(--font-family);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 4px 0;
  white-space: nowrap;
  transition: opacity 0.3s ease, color 0.3s ease, font-weight 0.3s ease, font-size 0.3s ease;
  opacity: 0.4;
  flex-shrink: 0;
  text-align: center;
  box-sizing: border-box;
}
.carousel-tab.active {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
  opacity: 1;
}
@media (max-width: 768px) {
  .carousel-tab.active {
    font-size: 1.0625rem;
  }
}
.carousel-tab.near {
  opacity: 0.5;
  font-weight: 400;
}
@media (max-width: 768px) {
  .carousel-tab {
    font-size: 0.9375rem;
  }
}

.carousel-description {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1rem;
  margin-bottom: 32px;
  min-height: 1.6em;
  transition: opacity 0.3s ease;
}

.carousel-viewport {
  margin: 0 -24px;
  padding: 10% 24px;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.carousel-card {
  flex: 0 0 340px;
  transform: scale(0.88);
  opacity: 0.35;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.5s ease;
  filter: blur(1px);
  position: relative;
}
.carousel-card.active {
  transform: scale(1.5);
  opacity: 1;
  filter: blur(0);
  z-index: 10;
}
.carousel-card.active .carousel-card-inner {
  box-shadow: var(--shadow-lg);
}
.carousel-card.near {
  transform: scale(0.92);
  opacity: 0.5;
  filter: blur(0);
}
@media (max-width: 1024px) {
  .carousel-card {
    flex: 0 0 280px;
  }
}
@media (max-width: 768px) {
  .carousel-card {
    flex: 0 0 260px;
  }
}

.carousel-card-inner {
  background: var(--color-white);
  border-radius: 4px;
  padding: 10;
  box-shadow: var(--shadow);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 768px) {
  .carousel-card-inner {
    max-width: 88%;
  }
}

.carousel-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--color-text);
}
.carousel-card-header svg {
  color: var(--color-primary);
  flex-shrink: 0;
}
.carousel-card-header span {
  font-weight: 600;
  font-size: 0.9375rem;
}

.carousel-card-body {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.6;
  flex: 1;
}

.carousel-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 16px;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

.faq-section {
  padding: 80px 0;
  background: var(--color-bg);
}
.split-hero + .faq-section {
  padding-top: 0px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.faq-grid--no-image {
  grid-template-columns: 1fr;
}

.faq-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.faq-content h2 {
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.faq-content h2 strong {
  font-weight: 800;
}

.faq-subtitle {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  margin: 10px 0 0;
  padding-bottom: 10px;
}
.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: var(--font-family);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-text-muted);
}
.faq-question:hover {
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .faq-question {
    font-size: 1.25rem;
    line-height: 1.3em;
  }
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 0 20px;
  color: var(--color-text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.faq-accordion--open .faq-answer {
  max-height: none;
  overflow: visible;
}
.faq-accordion--open .faq-question--static {
  cursor: default;
}
.faq-accordion--open .faq-question--static:hover {
  color: var(--color-text);
}

.testimonials-section {
  padding-top: 80px;
  background: var(--color-bg-alt);
}
.testimonials-section h2,
.testimonials-section .testimonial-content p,
.testimonials-section .testimonial-content .testimonial-name,
.testimonials-section .testimonial-content blockquote {
  color: var(--color-text) !important;
}
@media (max-width: 768px) {
  .testimonials-section {
    padding: 48px 0;
  }
}

.testimonials-carousel {
  position: relative;
  min-height: 280px;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.testimonial.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.testimonial-inner {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 48px;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .testimonial-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
}

.testimonial-photo {
  flex-shrink: 0;
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .testimonial-photo {
    width: 180px;
    height: 120px;
    margin: 0 auto;
    padding: 0 30px;
    border-bottom: 1px solid #c5c5c5;
  }
}

.testimonial-content blockquote {
  font-size: 1.2rem;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 24px;
  padding: 0;
  border: none;
  background: none;
  position: relative;
}
.testimonial-content blockquote:before {
  content: "“";
  font-size: 3rem;
  line-height: 0.5em;
  color: var(--color-text);
  position: absolute;
  left: -25px;
  font-family: "Times New Roman", Times, serif;
}
@media (max-width: 768px) {
  .testimonial-content blockquote:before {
    left: -5px;
  }
}

.testimonial-signature {
  display: block;
  align-items: center;
  gap: 16px;
}
.testimonial-signature img {
  height: 40px;
  width: auto;
  margin-top: 10px;
  filter: invert(100%);
}
@media (max-width: 768px) {
  .testimonial-signature img {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .testimonial-signature {
    justify-content: center;
  }
}

.testimonial-name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
}

.testimonials-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}
.testimonials-dot.active {
  background: var(--color-primary);
}

.cta-section {
  padding: 80px 0;
  background: var(--color-dark);
  color: var(--color-white);
  text-align: center;
}
.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 1.125rem;
  color: var(--color-white);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content p {
  opacity: 0.85;
}
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 1.75rem;
  }
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

.reports-nav__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}
@media (max-width: 768px) {
  .reports-nav__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.reports-nav__list a {
  display: block;
  padding: 6px 14px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border: 1px solid var(--color-border, #ddd);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.reports-nav__list a:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.split-hero {
  padding: 80px 0;
  background: var(--color-bg);
}
@media (max-width: 768px) {
  .split-hero {
    padding: 48px 0;
  }
}

.split-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 1025px) {
  .split-hero-grid--image-left .split-hero-content {
    order: 2;
  }
  .split-hero-grid--image-left .split-hero-image {
    order: 1;
  }
}
@media (max-width: 1024px) {
  .split-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.split-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .split-hero-title {
    font-size: 2.5rem;
  }
}

.split-hero-prehead {
  font-size: 0.875rem;
  margin-bottom: 10px;
}

.split-hero-content p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.split-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .split-hero-actions {
    flex-direction: column;
  }
  .split-hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}

.split-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.split-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.page-id-58 .split-hero,
.page-template-page-reports-dynamic .split-hero {
  padding: 24px 0;
  background: transparent;
}
.page-id-58 .split-hero .split-hero-grid,
.page-template-page-reports-dynamic .split-hero .split-hero-grid {
  background: var(--color-bg-alt, #f3f6fb);
  border-radius: var(--radius-lg);
  padding: 48px;
}
@media (max-width: 1024px) {
  .page-id-58 .split-hero .split-hero-grid,
  .page-template-page-reports-dynamic .split-hero .split-hero-grid {
    padding: 32px;
  }
}
@media (max-width: 768px) {
  .page-id-58 .split-hero .split-hero-grid,
  .page-template-page-reports-dynamic .split-hero .split-hero-grid {
    padding: 24px;
  }
}
.page-id-58 .split-hero .split-hero-image,
.page-id-58 .split-hero .split-hero-image img,
.page-template-page-reports-dynamic .split-hero .split-hero-image,
.page-template-page-reports-dynamic .split-hero .split-hero-image img {
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.checklist-section {
  padding: 80px 0;
  background: #e8eaf0;
}

.checklist-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 768px) {
  .checklist-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}

.checklist-header {
  max-width: 750px;
  margin: 0 auto 48px;
}
.checklist-header h2 {
  font-size: 2.75rem;
  font-weight: 400;
  color: #352346;
  margin-bottom: 24px;
  line-height: 1.15;
}
.checklist-header h2 strong {
  font-weight: 800;
}
@media (max-width: 768px) {
  .checklist-header h2 {
    font-size: 2rem;
  }
}
.checklist-header p {
  font-size: 1.0625rem;
  color: #555555;
  line-height: 1.7;
}

.checklist-cards {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .checklist-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .checklist-cards {
    grid-template-columns: 1fr;
  }
}

.checklist-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.checklist-card:not(:last-child) {
  margin-bottom: 32px;
}
.checklist-card .checklist-check {
  position: absolute;
  z-index: 100;
  right: -5px;
  top: -7px;
  width: 25px;
  height: 25px;
}
.checklist-card .checklist-check svg {
  width: 100%;
  height: auto;
}
.checklist-card p {
  font-size: 0.9375rem;
  color: #555555;
  line-height: 1.5;
  margin: 0;
  padding-right: 28px;
}
.checklist-card p strong {
  color: #352346;
  font-weight: 700;
}

.checklist-check {
  position: absolute;
  top: 16px;
  right: 16px;
}

.checklist-sidebar {
  background: #22557f;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.checklist-sidebar h3 {
  font-size: 2.15rem;
  color: #ffffff;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 9px;
}
.checklist-sidebar h3 span {
  display: block;
  font-weight: 400;
  font-size: 1.55rem;
}
.checklist-sidebar h3 strong {
  font-weight: 800;
}
@media (max-width: 768px) {
  .checklist-sidebar h3 {
    font-size: 1.75rem;
  }
}
.checklist-sidebar p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}
.checklist-sidebar p:last-child {
  margin-bottom: 0;
}
.checklist-sidebar p strong {
  color: #ffffff;
  font-weight: 700;
}
.checklist-sidebar img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: auto;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .checklist-sidebar {
    padding: 32px 24px;
  }
}

.features-section {
  padding: 80px 0;
  background: var(--color-bg-alt);
}
.features-section a {
  margin-top: 7px;
  display: block;
}
@media (max-width: 768px) {
  .features-section {
    padding: 48px 0;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.5fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.features-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.features-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
@media (max-width: 768px) {
  .features-image img {
    height: 100%;
    object-position: center;
  }
}
@media (max-width: 768px) {
  .features-image {
    height: 360px;
  }
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 30px;
  border-left: 10px solid var(--color-dark);
}

.features-item h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}
.features-item p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}
.features-item a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--color-primary);
}
.features-item a svg {
  flex-shrink: 0;
}

.pricing-section {
  padding: 80px 0 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .pricing-section {
    padding: 48px 0;
  }
}
.pricing-section + .split-hero {
  padding-top: 35px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}
.pricing-header h2 {
  margin-bottom: 12px;
}
.pricing-header p {
  font-size: 1.1rem;
  color: #555555;
  max-width: 540px;
  margin: 0 auto;
}

.pricing-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .pricing-grid {
    gap: 20px;
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #f7f7f7;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 32px 28px;
  flex: 1 1 0;
  min-width: 200px;
  text-align: center;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.pricing-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.pricing-card--highlighted {
  border-color: #352346;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #352346;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.pricing-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #352346;
  margin-bottom: 4px;
}
.pricing-card__price {
  font-size: 2.25rem;
  font-weight: 800;
  color: #352346;
  line-height: 1.2;
  margin-bottom: 4px;
}
@media (max-width: 960px) and (min-width: 768px) {
  .pricing-card__price {
    font-size: 1.5rem;
  }
}
.pricing-card__price-note {
  font-size: 0.85rem;
  color: #999999;
  margin-bottom: 8px;
}
.pricing-card__desc {
  font-size: 0.9rem;
  color: #555555;
  margin-bottom: 20px;
}
.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  flex: 1;
}
.pricing-card__features li {
  position: relative;
  padding: 5px 0 5px 20px;
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.45;
}
.pricing-card__features li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: #4087c3;
  font-weight: 700;
}
.pricing-card__action {
  margin-top: auto;
}
.pricing-card__action .btn {
  width: 100%;
}
.pricing-card {
  /* @media (max-width: 1024px) {
         flex: 1 1 calc(50% - 20px);
     }
  */
}
@media (max-width: 768px) {
  .pricing-card {
    flex: 1 1 100%;
  }
}

.pricing-banner {
  background: #f7f7f7;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 32px 40px;
  margin-top: 8px;
}
.pricing-banner__content {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 8px 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .pricing-banner__content {
    display: flex;
  }
}
.pricing-banner__text {
  grid-column: 1;
  grid-row: 1;
}
.pricing-banner__name {
  font-size: 2.25rem;
  font-weight: 800;
  color: #352346;
  margin-bottom: 4px;
}
.pricing-banner__desc {
  font-size: 0.9rem;
  color: #555555;
  margin: 0;
}
.pricing-banner__features {
  grid-column: 1;
  grid-row: 2;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
}
.pricing-banner__features li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  color: #555555;
}
.pricing-banner__features li::before {
  content: "•";
  position: absolute;
  left: 2px;
  color: #4087c3;
  font-weight: 700;
}
.pricing-banner__action {
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
}
@media (max-width: 768px) {
  .pricing-banner {
    padding: 24px;
  }
  .pricing-banner__content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .pricing-banner__features {
    justify-content: center;
  }
}

.contact-form-section {
  padding: 80px 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .contact-form-section {
    padding: 48px 0;
  }
}

.contact-form-header {
  text-align: center;
  margin-bottom: 40px;
}
.contact-form-header h2 {
  margin-bottom: 12px;
}
.contact-form-header p {
  font-size: 1.1rem;
  color: #555555;
  max-width: 540px;
  margin: 0 auto;
}

.contact-form-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.wpcf7-form p {
  margin-bottom: 16px;
}
.wpcf7-form label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: #352346;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form input[type=url],
.wpcf7-form input[type=number],
.wpcf7-form input[type=date],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #ffffff;
  transition: border-color 0.2s ease;
}
.wpcf7-form input[type=text]:focus,
.wpcf7-form input[type=email]:focus,
.wpcf7-form input[type=tel]:focus,
.wpcf7-form input[type=url]:focus,
.wpcf7-form input[type=number]:focus,
.wpcf7-form input[type=date]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #4087c3;
  box-shadow: 0 0 0 3px rgba(64, 135, 195, 0.1);
}
.wpcf7-form textarea {
  resize: vertical;
  min-height: 140px;
}
.wpcf7-form .cf7-row {
  display: flex;
  gap: 16px;
}
.wpcf7-form .cf7-row > span,
.wpcf7-form .cf7-row > label {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .wpcf7-form .cf7-row {
    flex-direction: column;
    gap: 0;
  }
}
.wpcf7-form input[type=submit] {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 50px;
  border: 2px solid #4087c3;
  background: #4087c3;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.wpcf7-form input[type=submit]:hover {
  background: #255984;
  border-color: #255984;
}
.wpcf7-form .wpcf7-not-valid {
  border-color: #dc3545;
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 4px;
  display: block;
}
.wpcf7-form .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
}
.wpcf7-form.sent .wpcf7-response-output {
  border-color: #28a745;
  color: #28a745;
  background: rgba(40, 167, 69, 0.05);
}
.wpcf7-form.failed .wpcf7-response-output, .wpcf7-form.invalid .wpcf7-response-output {
  border-color: #dc3545;
  color: #dc3545;
  background: rgba(220, 53, 69, 0.05);
}
.wpcf7-form .wpcf7-spinner {
  margin-left: 12px;
}

.two-col {
  display: flex;
  gap: 30px;
  width: 100%;
}
.two-col > * {
  width: 100%;
}

.cf-of {
  padding: 60px 0;
  min-height: calc(100vh - 72px);
}
@media (max-width: 768px) {
  .cf-of {
    padding: 32px 0;
  }
}

.cf-of-upload__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}

#cf-upload-how {
  font-size: 0.75rem;
  color: #4087c3;
  border: 1px solid #4087c3;
  border-radius: 8px;
  padding: 5px 10px;
}
#cf-upload-how:hover {
  background: #4087c3;
  color: #ffffff;
}
#cf-upload-how {
  text-align: center;
  display: inline-block;
  cursor: pointer;
}

.cf-of-progress {
  margin-bottom: 48px;
}
.cf-of-progress__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.cf-of-progress__step {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: default;
  padding: 8px 16px;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}
.cf-of-progress__step.is-active {
  opacity: 1;
  cursor: default;
}
.cf-of-progress__step.is-completed {
  opacity: 0.7;
  cursor: pointer;
}
.cf-of-progress__step.is-completed .cf-of-progress__number {
  background: #4087c3;
  color: #ffffff;
}
.cf-of-progress__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f2f5;
  color: #555555;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}
.is-active .cf-of-progress__number {
  background: #4087c3;
  color: #ffffff;
}
.cf-of-progress__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #555555;
}
.is-active .cf-of-progress__label {
  color: #352346;
  font-weight: 600;
}
@media (max-width: 768px) {
  .cf-of-progress__label {
    display: none;
  }
}
.cf-of-progress__line {
  flex: 0 0 40px;
  height: 2px;
  background: #e5e5e5;
}
@media (max-width: 768px) {
  .cf-of-progress__line {
    flex: 0 0 20px;
  }
}

.cf-of-step {
  margin: 0 auto;
}
.cf-of-step__title {
  font-size: 1.75rem;
  font-weight: 700;
}
.cf-of-step__desc {
  color: #555555;
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.cf-of-step__actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
}
.cf-of-step__actions--split {
  justify-content: space-between;
}
.cf-of-step__actions--split .cf-of-step__actions-left,
.cf-of-step__actions--split .cf-of-step__actions-right {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
@media (max-width: 768px) {
  .cf-of-step__actions--split {
    flex-direction: column;
    gap: 12px;
  }
  .cf-of-step__actions--split .cf-of-step__actions-left,
  .cf-of-step__actions--split .cf-of-step__actions-right {
    width: 100%;
  }
  .cf-of-step__actions--split .cf-of-step__actions-left .cf-of-btn,
  .cf-of-step__actions--split .cf-of-step__actions-left a,
  .cf-of-step__actions--split .cf-of-step__actions-right .cf-of-btn,
  .cf-of-step__actions--split .cf-of-step__actions-right a {
    width: 100%;
    justify-content: center;
  }
}

.cf-of-configure {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
.cf-of-configure .cf-tips {
  background: #fff4cd;
  border: 1px solid #beae7b;
  background: rgb(242.5203187251, 247.1593625498, 251.0796812749);
  border-color: rgb(195.9498007968, 217.9003984064, 236.4501992032);
  border-radius: 12px;
  padding: 15px 15px;
  align-self: start;
  margin-top: 12px;
}
.cf-of-configure .cf-tips h3 {
  font-weight: 800;
  margin-bottom: 12px;
}
.cf-of-configure .cf-tips p {
  margin-bottom: 12px;
}
.cf-of-configure .cf-tips p:last-child {
  margin-bottom: 0;
}

.filename {
  font-size: 0.9rem;
  margin-top: 8px;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 8px 15px;
}

.cf-of-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.cf-of-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cf-of-btn--primary {
  background: #4087c3;
  color: #ffffff;
}
.cf-of-btn--primary:hover:not(:disabled) {
  background: #255984;
  color: #ffffff;
}
.cf-of-btn--outline {
  background: transparent;
  color: #4087c3;
  border-color: #4087c3;
}
.cf-of-btn--outline:hover {
  background: #4087c3;
  color: #ffffff;
}
.cf-of-btn--danger {
  background: transparent;
  color: #333333;
  border-color: #333333;
}
.cf-of-btn--danger:hover {
  opacity: 0.7;
}
.cf-of-btn--icon {
  padding: 4px;
  border: none;
  background: transparent;
  line-height: 1;
  cursor: pointer;
}
.cf-of-btn--icon:hover {
  opacity: 0.7;
}
.cf-of-btn--sm {
  padding: 6px 16px;
  font-size: 0.85rem;
}

.cf-of-dropzone {
  border: 2px dashed #e5e5e5;
  border-radius: 12px;
  padding: 48px 24px;
  text-align: center;
  transition: all 0.2s ease;
  background: #f7f7f7;
}
.cf-of-dropzone.is-dragover {
  border-color: #4087c3;
  background: rgba(64, 135, 195, 0.05);
}
.cf-of-dropzone__icon {
  color: #999999;
  margin-bottom: 16px;
}
.cf-of-dropzone__text {
  color: #555555;
  margin-bottom: 12px;
}
.cf-of-dropzone__btn {
  cursor: pointer;
}
.cf-of-dropzone__input {
  display: none;
}
.cf-of-dropzone__hint {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #999999;
}

.cf-of-upload__progress {
  text-align: center;
  padding: 32px 0;
}
.cf-of-upload__progress-bar {
  width: 100%;
  max-width: 400px;
  height: 6px;
  background: #f0f2f5;
  border-radius: 3px;
  margin: 0 auto 16px;
  overflow: hidden;
}
.cf-of-upload__progress-fill {
  height: 100%;
  background: #4087c3;
  border-radius: 3px;
  width: 0;
  transition: width 0.3s ease;
}
.cf-of-upload__progress-text {
  color: #555555;
  font-size: 0.9rem;
}

.cf-of-upload-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 30px;
}
.cf-of-upload-success__icon {
  flex-shrink: 0;
  color: #28a745;
  width: 54px;
  height: 54px;
}
.cf-of-upload-success__info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.cf-of-upload-success__uploaded {
  font-weight: 600;
}
.cf-of-upload-success__name {
  font-size: 0.95rem;
  color: #352346;
}
.cf-of-upload-success__size {
  font-size: 0.8rem;
  color: #999999;
}
.cf-of-upload-success__info {
  flex: 1;
}
.cf-of-upload-success__replace {
  margin-left: auto;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4087c3;
  background: transparent;
  border: 1px solid #4087c3;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.cf-of-upload-success__replace:hover {
  background: #4087c3;
  color: #ffffff;
}

#cf-select-section {
  margin-top: 30px;
  transition: opacity 0.3s ease;
}
#cf-select-section.is-disabled .cf-of-reports {
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
}

.cf-of-reports {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .cf-of-reports {
    grid-template-columns: 1fr;
  }
}

.cf-of-report-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-decoration: none;
  color: inherit;
}
.cf-of-report-card:hover {
  border-color: #85b0d3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.cf-of-report-card.is-selected {
  border-color: #4087c3;
  background: rgba(64, 135, 195, 0.03);
  box-shadow: 0 0 0 3px rgba(64, 135, 195, 0.15);
}
.cf-of-report-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  object-fit: contain;
}
.cf-of-report-card__icon--default {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4087c3;
}
.cf-of-report-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.cf-of-report-card__desc {
  font-size: 0.85rem;
  color: #555555;
  margin-bottom: 12px;
  line-height: 1.4;
}
.cf-of-report-card__desc p {
  margin: 0;
}

.cf-of-notice {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  font-weight: 500;
}
.cf-of-notice--info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

.cf-of-loading {
  text-align: center;
  padding: 48px 0;
}
.cf-of-loading__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f0f2f5;
  border-top-color: #4087c3;
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: cf-spin 0.7s linear infinite;
}
.cf-of-loading p {
  color: #999999;
}

@keyframes cf-spin {
  to {
    transform: rotate(360deg);
  }
}
.cf-of-field__label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.cf-of-field__label-row {
  display: inline-flex;
  align-items: center;
  margin-bottom: 6px;
}
.cf-of-field__label-row .cf-of-field__label {
  margin-bottom: 0;
}
.cf-of-field__required {
  color: #dc3545;
}
.cf-of-field__input, .cf-of-field__select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: border-color 0.2s ease;
  background: #ffffff;
}
.cf-of-field__input:focus, .cf-of-field__select:focus {
  outline: none;
  border-color: #4087c3;
  box-shadow: 0 0 0 3px rgba(64, 135, 195, 0.1);
}
.cf-of-field__input.is-error, .cf-of-field__select.is-error {
  border-color: #dc3545;
}
.cf-of-field__help {
  margin-top: 4px;
  font-size: 0.8rem;
  color: #999999;
}

.cf-of-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.cf-of-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #4087c3;
}
.cf-of-checkbox__label {
  font-weight: normal;
}

.cf-of-unique-fields {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}
.cf-of-unique-fields__grid {
  /*display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));*/
  display: flex;
  gap: 24px;
}
.cf-of-unique-fields .cf-of-field {
  width: 100%;
}
.cf-of-unique-fields input[type=number] {
  width: 50%;
  display: block;
}

.cf-of-common-fields {
  margin-top: 8px;
}

.cf-of-tabs {
  display: inline-flex;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.cf-of-tabs__btn {
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  background: #ffffff;
  border: none;
  cursor: pointer;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: all 0.2s ease;
  color: #555555;
}
.cf-of-tabs__btn:not(:last-child) {
  border-right: 1px solid #e5e5e5;
}
.cf-of-tabs__btn.is-active {
  background: #4087c3;
  color: #ffffff;
}
.cf-of-tabs__btn:hover:not(.is-active) {
  background: #f7f7f7;
}

.cf-of-date-range {
  margin-bottom: 20px;
  padding: 16px;
  background: #f7f7f7;
  border-radius: 8px;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 12px 16px;
  align-items: center;
}
.cf-of-date-range .cf-of-field {
  display: contents;
}
.cf-of-date-range .cf-of-field__label {
  margin: 0;
  white-space: nowrap;
}
.cf-of-date-range .cf-of-field {
  margin-bottom: 0;
}
.cf-of-date-range .cf-of-field__input {
  width: auto;
  max-width: 180px;
}

.cf-of-standard-panel,
.cf-of-filter-group {
  margin-bottom: 30px;
}

.cf-of-filter-group .cf-of-field__label {
  margin-bottom: 10px;
}

.cf-of-checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}

.cf-of-checkbox--inline {
  display: inline-flex;
  white-space: nowrap;
}

.cf-of-field__textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: border-color 0.2s ease;
  background: #ffffff;
  resize: vertical;
}
.cf-of-field__textarea:focus {
  outline: none;
  border-color: #4087c3;
  box-shadow: 0 0 0 3px rgba(64, 135, 195, 0.1);
}
.cf-of-field__textarea.is-error {
  border-color: #dc3545;
}

.cf-of-no-options {
  text-align: center;
  padding: 32px;
  background: #f7f7f7;
  border-radius: 12px;
}
.cf-of-no-options p {
  color: #555555;
}

.cf-of-cart__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.cf-of-cart__empty {
  text-align: center;
  color: #999999;
  padding: 48px 0;
}
.cf-of-cart__group {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
}
.cf-of-cart__group-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #f7f7f7;
  border-bottom: 1px solid #e5e5e5;
  font-size: 0.9rem;
  font-weight: 600;
  color: #352346;
}
.cf-of-cart__group-header svg {
  flex-shrink: 0;
  color: #999999;
}
.cf-of-cart__group-name {
  flex: 1;
}
.cf-of-cart__group-count {
  font-weight: 400;
  font-size: 0.8rem;
  color: #999999;
}
.cf-of-cart__item {
  padding: 20px;
}
.cf-of-cart__item--bordered {
  border-top: 1px solid #e5e5e5;
}
.cf-of-cart__item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cf-of-cart__item-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}
.cf-of-cart__item-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #4087c3;
}
.cf-of-cart__item-pdf {
  font-size: 0.85rem;
  color: #999999;
  margin-bottom: 8px;
}
.cf-of-cart__item-options {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  font-size: 0.9rem;
}
.cf-of-cart__item-options li {
  padding: 2px 0;
  color: #555555;
}
.cf-of-cart__item-actions {
  display: flex;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #e5e5e5;
}
.cf-of-cart__total {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}
.cf-of-cart__total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 600;
}

.cf-of-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  z-index: 10000;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}
.cf-of-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cf-of-toast--error {
  background: #dc3545;
  color: #ffffff;
}

.cf-cart-columns {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.cf-cart-columns__left {
  flex: 1;
  min-width: 0;
}
.cf-cart-columns__right {
  flex: 0 0 33%;
  position: sticky;
  top: 100px;
}
@media (max-width: 768px) {
  .cf-cart-columns {
    flex-direction: column;
    gap: 24px;
  }
  .cf-cart-columns__right {
    flex: none;
    width: 100%;
    position: static;
  }
}

.cf-cart-pdf-group {
  margin-bottom: 24px;
}
.cf-cart-pdf-group__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #352346;
  padding: 12px 0;
  margin: 0;
}
.cf-cart-pdf-group__title svg {
  color: #4087c3;
  flex-shrink: 0;
}
.cf-cart-pdf-group__count {
  font-weight: 400;
  font-size: 0.875rem;
  color: #555555;
}
.cf-cart-pdf-group__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cf-cart-pdf-group__add {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #4087c3;
  border: 1px solid #4087c3;
  border-radius: 8px;
  padding: 6px 12px;
}
.cf-cart-pdf-group__add svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}
.cf-cart-pdf-group__add:hover {
  background: #4087c3;
  color: #ffffff;
  text-decoration: none !important;
}
.cf-cart-pdf-group__add:hover svg {
  stroke: #ffffff;
}

.cf-cart-item {
  background: #ffffff;
  padding: 20px;
}
.cf-cart-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cf-cart-item__name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}
.cf-cart-item__remove {
  color: #dc3545;
  padding: 4px;
  line-height: 1;
  cursor: pointer;
  border: none;
  background: transparent;
}
.cf-cart-item__remove:hover {
  opacity: 0.7;
}
.cf-cart-item__edit {
  color: #4087c3;
  line-height: 1;
  border: none;
  background: transparent;
  font-size: 0.9rem;
}
.cf-cart-item__edit:hover {
  opacity: 0.7;
}
.cf-cart-item__options {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}
.cf-cart-item__options li {
  padding: 2px 0;
  color: #555555;
}

.cf-order-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  list-style: none;
  padding: 24px;
  margin: 20px 0;
  background: #f7f7f7;
  border-radius: 12px;
}
.cf-order-overview li {
  text-align: left;
  padding: 0 20px;
}
.cf-order-overview li .label {
  display: block;
  font-size: 0.8125rem;
  color: #999999;
  margin-bottom: 4px;
}
.cf-order-overview li strong {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .cf-order-overview {
    flex-direction: column;
  }
}

.cf-of-expedite {
  margin-top: 24px;
  background: rgb(242.5203187251, 247.1593625498, 251.0796812749);
  border: 1px solid rgb(195.9498007968, 217.9003984064, 236.4501992032);
  border-radius: 8px;
  padding: 14px 18px;
}
.cf-of-expedite__label {
  display: flex;
  align-items: center;
  gap: 17px;
  cursor: pointer;
  margin: 0;
}
.cf-of-expedite__text {
  flex: 1;
}
.cf-of-expedite__text strong {
  display: block;
  font-size: 0.95rem;
  color: #352346;
}
.cf-of-expedite__desc {
  display: block;
  font-size: 0.8125rem;
  color: #999999;
  margin-top: 2px;
}
.cf-of-expedite__desc p {
  margin: 0;
}
.cf-of-expedite__price {
  font-weight: 700;
  font-size: 0.95rem;
  color: #4087c3;
  white-space: nowrap;
}
.cf-of-expedite__toggle {
  appearance: none;
  -webkit-appearance: none;
  width: 44px;
  height: 24px;
  background: #f0f2f5;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.cf-of-expedite__toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}
.cf-of-expedite__toggle:checked {
  background: #4087c3;
  border-color: #4087c3;
}
.cf-of-expedite__toggle:checked::after {
  transform: translateX(20px);
}

#customer_details {
  margin-top: 20px;
}

.cf-expedite-table {
  max-width: 400px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
}
.cf-expedite-table table {
  width: 100%;
  border-collapse: collapse;
}
.cf-expedite-table th, .cf-expedite-table td {
  padding: 12px 18px;
  text-align: left;
  font-size: 0.9375rem;
}
.cf-expedite-table thead th {
  background: #f7f7f7;
  font-weight: 600;
  color: #352346;
  border-bottom: 1px solid #e5e5e5;
}
.cf-expedite-table thead th:last-child {
  text-align: center;
}
.cf-expedite-table td, .cf-expedite-table th {
  width: 50%;
}
.cf-expedite-table tbody tr + tr {
  border-top: 1px solid #e5e5e5;
}
.cf-expedite-table tbody td:last-child {
  text-align: center;
  border-left: 1px solid #e5e5e5;
}
.cf-expedite-table tbody td:last-child span {
  font-weight: 700;
  color: #4087c3;
}
.cf-expedite-table__note {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: #999999;
}

.cf-of-pricing-summary {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 20px 24px;
}

.cf-of-pricing-summary__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cf-of-pricing-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cf-of-pricing-summary__row strong, .cf-of-pricing-summary__row bdi {
  font-weight: inherit;
}
.cf-of-pricing-summary__row {
  font-size: 0.9375rem;
  color: #352346;
}
.cf-of-pricing-summary__row--total {
  padding-top: 8px;
  border-top: 1px solid #e5e5e5;
  margin-top: 4px;
}
.cf-of-pricing-summary__row--expedite {
  padding-top: 8px;
  border-top: 1px solid #e5e5e5;
  margin-top: 4px;
}
.cf-of-pricing-summary__row--savings {
  color: #16a34a;
  font-weight: 600;
}
.cf-of-pricing-summary__row--warning {
  color: #dc2626;
  font-weight: 600;
}

.cf-of-pricing-summary__hint {
  margin: 12px 0;
  padding: 10px 14px;
  background: rgb(238.6394422311, 244.7211155378, 249.8605577689);
  border-radius: 8px;
  font-size: 0.875rem;
  color: #4087c3;
  font-weight: 500;
  text-align: center;
}
.cf-of-pricing-summary__hint--success {
  background: #dcfce7;
  color: #16a34a;
}

.cf-credit-price {
  font-weight: 600;
  color: #4087c3;
}

.cf-of-cart__item-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cf-of-cart__item-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: #352346;
  white-space: nowrap;
}

.cf-of-cart__item-options {
  margin: 0;
}

.cf-checkout-credit-notice {
  background: rgb(238.6394422311, 244.7211155378, 249.8605577689);
  border: 1px solid rgb(180.4262948207, 208.1474103586, 231.5737051793);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 16px;
  font-size: 0.9375rem;
  color: #352346;
  line-height: 1.5;
}

.cf-checkout-legal {
  margin-bottom: 24px;
}
.cf-checkout-legal__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: #555555;
  cursor: pointer;
}
.cf-checkout-legal__item input[type=checkbox] {
  margin-top: 3px;
  flex-shrink: 0;
}
.cf-checkout-legal__item a {
  color: #4087c3;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cf-checkout-legal__item a:hover {
  color: #255984;
}
.cf-checkout-legal__item--error {
  flex-wrap: wrap;
  color: #dc2626;
}
.cf-checkout-legal__item--error input[type=checkbox] {
  outline: 2px solid #dc2626;
  outline-offset: 1px;
}
.cf-checkout-legal__item--error a {
  color: #dc2626;
}
.cf-checkout-legal__error {
  display: block;
  width: 100%;
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 2px;
  padding-left: 24px;
}

.cf-law-firm-box {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 24px;
  overflow: hidden;
}
.cf-law-firm-box--welcome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgb(238.6394422311, 244.7211155378, 249.8605577689);
  border-color: rgb(180.4262948207, 208.1474103586, 231.5737051793);
}
.cf-law-firm-box__icon {
  flex-shrink: 0;
  color: #4087c3;
}
.cf-law-firm-box__content {
  flex: 1;
}
.cf-law-firm-box__greeting {
  margin: 0 0 2px;
  font-size: 0.9375rem;
  color: #352346;
}
.cf-law-firm-box__credits {
  margin: 0;
  font-size: 0.8125rem;
  color: #555555;
}
.cf-law-firm-box__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
  color: #352346;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-align: left;
}
.cf-law-firm-box__toggle-cta {
  color: #4087c3;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cf-law-firm-box__arrow {
  transition: transform 0.3s ease;
  color: #999999;
}
.is-open .cf-law-firm-box__arrow {
  transform: rotate(180deg);
}
.cf-law-firm-box__login {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 20px;
}
.cf-law-firm-box.is-open .cf-law-firm-box__login {
  margin-bottom: 7px;
}
.cf-law-firm-box__form {
  padding: 0;
}
.cf-law-firm-box__fields {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.cf-law-firm-box__field {
  flex: 1;
  margin: 0;
}
.cf-law-firm-box__field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #555555;
  margin-bottom: 4px;
}
.cf-law-firm-box__field input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: border-color 0.2s ease;
}
.cf-law-firm-box__field input:focus {
  outline: none;
  border-color: #4087c3;
}
.cf-law-firm-box__submit {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  background: #4087c3;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  cursor: pointer;
  transition: background 0.2s ease;
  align-self: end;
}
.cf-law-firm-box__submit:hover {
  background: #255984;
}
.cf-law-firm-box__error {
  margin: 10px 0 0;
  color: #dc2626;
  font-size: 0.8125rem;
}

.cf-cart-item__price {
  font-size: 0.875rem;
  font-weight: 600;
  color: #555555;
  white-space: nowrap;
}

.cf-cart-item__header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cf-checkout-total__row--bundle,
.cf-checkout-total__row--single {
  font-size: 0.875rem;
  color: #555555;
}

.cf-checkout-total__price--savings {
  color: #16a34a;
  font-weight: 600;
}

.cf-of-notice--pricing {
  font-size: 0.9375rem;
}

.cf-of-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.2s;
}
.cf-of-modal-overlay.is-visible {
  opacity: 1;
}

.cf-of-modal {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.cf-of-modal__message {
  font-size: 1.0625rem;
  color: #352346;
  margin: 0 0 24px;
  line-height: 1.5;
}
.cf-of-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.cf-tooltip-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 6px;
  padding: 0;
  border: 1px solid #85b0d3;
  background: #85b0d3;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  vertical-align: super;
  flex-shrink: 0;
}
.cf-tooltip-trigger__icon {
  font-size: 10px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: #ffffff;
  font-family: Georgia, serif;
}
.cf-tooltip-trigger:hover {
  border-color: #4087c3;
}
.cf-tooltip-trigger:hover .cf-tooltip-trigger__icon {
  color: #4087c3;
}
.cf-tooltip-trigger.is-active {
  border-color: #4087c3;
  background: #4087c3;
}
.cf-tooltip-trigger.is-active .cf-tooltip-trigger__icon {
  color: #ffffff;
}
.cf-tooltip-trigger.is-active .cf-tooltip__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.cf-tooltip__content {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #352346;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 400;
  font-style: normal;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.4;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: normal;
  width: 220px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 100;
  pointer-events: none;
}
.cf-tooltip__content::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #352346;
}

.shortcode-section {
  padding: 80px 0;
  background: #ffffff;
}
.shortcode-section--light {
  background: #f7f7f7;
}
@media (max-width: 768px) {
  .shortcode-section {
    padding: 48px 0;
  }
}

.shortcode-section__header {
  text-align: center;
  margin-bottom: 48px;
}
.shortcode-section__header h2 {
  margin-bottom: 12px;
}
.shortcode-section__header p {
  font-size: 1.1rem;
  color: #555555;
  max-width: 540px;
  margin: 0 auto;
}

.report-grid-section {
  padding: 80px 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .report-grid-section {
    padding: 48px 0;
  }
}

.report-grid-header {
  text-align: center;
  margin-bottom: 48px;
}
.report-grid-header h2 {
  margin-bottom: 12px;
}
.report-grid-header p {
  font-size: 1.1rem;
  color: #555555;
  max-width: 540px;
  margin: 0 auto;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .report-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.report-grid__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  transition: box-shadow 0.2s ease;
}
.report-grid__card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.report-grid__card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-style: solid;
}
.report-grid__card--link:hover {
  border-color: #4087c3;
}
@media (max-width: 768px) {
  .report-grid__card {
    padding: 20px 16px;
  }
}

.report-grid__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.report-grid__icon--default {
  color: #4087c3;
}

.report-grid__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #352346;
  text-align: center;
  line-height: 1.3;
}

.blockUI.blockOverlay {
  background: rgba(255, 255, 255, 0.7) !important;
  background-image: none !important;
  opacity: 1 !important;
}

.woocommerce .blockUI.blockOverlay::before,
.cf-of-pricing-summary > .blockUI.blockOverlay::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border: 3px solid #f0f2f5;
  border-top-color: #4087c3;
  border-radius: 50%;
  animation: cf-spin 0.7s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -20px 0 0 -20px;
  background: none;
}

.blockUI.blockMsg,
.blockUI.blockMsg img,
.blockUI .loader,
.woocommerce .loader::before {
  background-image: none !important;
}

.blockUI.blockMsg img {
  display: none !important;
}

@keyframes cf-spin {
  to {
    transform: rotate(360deg);
  }
}
.woocommerce form .form-row {
  margin-bottom: 16px;
}
.woocommerce form .form-row label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.875rem;
  color: #352346;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9375rem;
  transition: border-color 0.2s ease;
  background: #ffffff;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  outline: none;
  border-color: #4087c3;
  box-shadow: 0 0 0 3px #85b0d3;
}

abbr.required {
  text-decoration: none;
}

.woocommerce-checkout textarea#order_comments {
  resize: vertical;
  min-height: 80px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  height: 42px;
  padding: 10px 14px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row {
  flex: 0 0 100%;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-first,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-last {
  flex: 0 0 calc(50% - 8px);
}
@media (max-width: 768px) {
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-first,
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-last {
    flex: 0 0 100%;
  }
}

.cf-law-firm-box--welcome ~ #customer_details #billing_email_field {
  flex: 0 0 100%;
}

.woocommerce-checkout #billing_city_field,
.woocommerce-checkout #billing_state_field {
  flex: 0 0 calc(50% - 8px);
}
@media (max-width: 768px) {
  .woocommerce-checkout #billing_city_field,
  .woocommerce-checkout #billing_state_field {
    flex: 0 0 100%;
  }
}
.woocommerce-checkout #billing_postcode_field,
.woocommerce-checkout #billing_email_field {
  flex: 0 0 calc(50% - 8px);
}
@media (max-width: 768px) {
  .woocommerce-checkout #billing_postcode_field,
  .woocommerce-checkout #billing_email_field {
    flex: 0 0 100%;
  }
}

.cf-cart-columns {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.cf-cart-columns__left {
  flex: 1;
  min-width: 0;
}
.cf-cart-columns__right {
  flex: 0 0 33%;
  position: sticky;
  top: 100px;
}
@media (max-width: 768px) {
  .cf-cart-columns {
    flex-direction: column;
    gap: 24px;
  }
  .cf-cart-columns__right {
    flex: none;
    width: 100%;
    position: static;
  }
}

.woocommerce-cart .cf-cart-columns__right .cart_totals {
  width: 100%;
  float: none;
}

.cf-cart-pdf-group {
  margin-bottom: 24px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
}
.cf-cart-pdf-group__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #352346;
  padding: 24px 20px;
  margin: 0;
  border-bottom: 1px solid #e5e5e5;
  background: #f7f7f7;
}
.cf-cart-pdf-group__title > svg {
  color: #4087c3;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}
.cf-cart-pdf-group__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.cf-cart-pdf-group__filename {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cf-cart-pdf-group__count {
  font-weight: 400;
  font-size: 0.8125rem;
  color: #999999;
}
.cf-cart-pdf-group__add {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #4087c3;
  text-decoration: none;
  white-space: nowrap;
  padding-top: 13px;
  padding-bottom: 12px;
}
.cf-cart-pdf-group__add:hover {
  text-decoration: underline;
}
.cf-cart-pdf-group__items {
  display: flex;
  flex-direction: column;
}

.cf-cart-item {
  padding: 20px;
}
.cf-cart-item + .cf-cart-item {
  border-top: 1px solid #e5e5e5;
}
.cf-cart-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cf-cart-item__name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}
.cf-cart-item__remove {
  color: #333333;
  padding: 4px;
  line-height: 1;
  cursor: pointer;
  border: none;
  background: transparent;
  text-decoration: none;
}
.cf-cart-item__remove:hover {
  opacity: 0.7;
}
.cf-cart-item__options {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}
.cf-cart-item__options li {
  padding: 2px 0;
  color: #555555;
}

.woocommerce-cart .woocommerce table.shop_table {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  border-collapse: separate;
}

.woocommerce table.shop_table th {
  background: #f7f7f7;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 14px 16px;
}
.woocommerce table.shop_table td {
  padding: 16px;
  border-top: 1px solid #e5e5e5;
  vertical-align: middle;
}
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
  border: 0;
}

.cf-hidden-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.cf-checkout__columns {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .cf-checkout__columns {
    flex-direction: column;
    gap: 32px;
  }
}

.cf-checkout__left {
  flex: 1;
  min-width: 0;
  width: 100%;
}
.cf-checkout__left .cf-of-step__title {
  margin-bottom: 10px;
}

.cf-checkout__right {
  flex: 0 0 42%;
  margin-top: 44px;
  padding: 24px 20px;
  background: #f9f9f9;
  border-radius: 12px;
  position: sticky;
  top: 24px;
  overflow-y: auto;
  border: 1px solid #352346;
}
.cf-checkout__right h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .cf-checkout__right {
    flex: none;
    width: 100%;
    position: static;
  }
}

.woocommerce-remove-coupon {
  text-transform: lowercase;
}

.cf-checkout__add-more-wrap {
  text-align: right;
  margin-top: 16px;
}

.cf-checkout__add-more {
  display: inline-block;
  padding: 12px 24px;
  background: #4087c3;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.2s;
}
.cf-checkout__add-more:hover {
  background: rgb(49.7211155378, 108.5577689243, 158.2788844622);
  color: #ffffff;
}

.cf-checkout-total {
  margin-bottom: 24px;
}
.cf-checkout-total__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: #4087c3;
  color: #ffffff;
  border-radius: 12px;
  font-size: 1.3rem;
  font-weight: 700;
}
.cf-checkout-total__row--discount, .cf-checkout-total__row--fee, .cf-checkout-total__row--tax {
  background: transparent;
  color: #352346;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 0;
}

.cf-checkout-pdf-group {
  margin-bottom: 12px;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
}
.cf-checkout-pdf-group__header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555555;
  padding: 8px 12px;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}
.cf-checkout-pdf-group__header svg {
  color: #4087c3;
  flex-shrink: 0;
}
.cf-checkout-pdf-group__items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cf-checkout-pdf-group__item {
  padding: 8px 12px;
  font-size: 0.9rem;
  border-bottom: 1px solid #e5e5e5;
}
.cf-checkout-pdf-group__item:last-child {
  border-bottom: none;
}
.cf-checkout-pdf-group__item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cf-checkout-pdf-group__details {
  list-style: none;
  padding: 6px 0 0;
  margin: 6px 0 0;
  border-top: 1px solid #e5e5e5;
  font-size: 0.8rem;
  color: #777;
}
.cf-checkout-pdf-group__details li {
  padding: 2px 0;
}
.cf-checkout-pdf-group__details strong {
  font-weight: 600;
  color: #555555;
}

.cf-checkout-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  color: #999999;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.cf-checkout-toggle[aria-expanded=true] {
  transform: rotate(180deg);
}
.cf-checkout-toggle:hover {
  color: #555555;
}

.cf-checkout-coupon-slot {
  margin: 16px 0;
}
.cf-checkout-coupon-slot .woocommerce-form-coupon-toggle {
  margin-bottom: 0;
}
.cf-checkout-coupon-slot .woocommerce-form-coupon-toggle .woocommerce-info {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: #777;
}
.cf-checkout-coupon-slot .woocommerce-form-coupon-toggle .woocommerce-info::before {
  display: none;
}
.cf-checkout-coupon-slot .checkout_coupon {
  margin: 8px 0 0 !important;
  padding: 0 14px !important;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px !important;
  display: grid;
  grid-template-columns: 1fr 135px;
  gap: 0 12px;
}
.cf-checkout-coupon-slot .checkout_coupon .form-row, .cf-checkout-coupon-slot .checkout_coupon p {
  margin: 0;
  padding: 14px 0px;
  width: 100%;
}
.cf-checkout-coupon-slot .checkout_coupon input {
  width: 100%;
  padding: 8px 12px !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 8px !important;
  font-size: 0.875rem !important;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: border-color 0.2s ease;
}
.cf-checkout-coupon-slot .checkout_coupon input:focus {
  outline: none;
  border-color: #4087c3 !important;
}
.cf-checkout-coupon-slot .checkout_coupon button.button {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px !important;
  width: 100%;
  background: #4087c3;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  cursor: pointer;
  transition: background 0.2s ease;
  align-self: end;
  line-height: normal;
  text-align: center;
}
.cf-checkout-coupon-slot .checkout_coupon button.button:hover {
  background: #255984;
}

#place_order {
  width: 100%;
  margin-top: 20px;
  font-size: 1.2em;
  padding: 14px 24px;
}

.woocommerce-order-details-wrapper {
  display: block;
}
.woocommerce-order-details-wrapper .woocommerce-order-details,
.woocommerce-order-details-wrapper .woocommerce-customer-details {
  float: none;
  width: 100%;
}
.woocommerce-order-details-wrapper .woocommerce-customer-details {
  margin-top: 24px;
}

.cf-order-credits-summary {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.cf-order-credits-summary__item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgb(238.6394422311, 244.7211155378, 249.8605577689);
  border: 1px solid rgb(180.4262948207, 208.1474103586, 231.5737051793);
  border-radius: 8px;
  padding: 10px 18px;
}
.cf-order-credits-summary__label {
  font-size: 0.875rem;
  color: #555555;
}
.cf-order-credits-summary__value {
  font-size: 1.1rem;
  color: #4087c3;
}

.woocommerce .woocommerce-column__title,
.woocommerce .woocommerce-order-details__title {
  margin-bottom: 15px;
}

.woocommerce .woocommerce-customer-details address {
  border: 0;
  padding: 0;
}

.woocommerce .woocommerce-customer-details--email {
  padding-left: 0 !important;
}
.woocommerce .woocommerce-customer-details--email:before {
  display: none;
}

.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
}

.woocommerce-MyAccount-navigation {
  display: none;
}

.cf-dashboard {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}
.cf-dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.cf-dashboard__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #352346;
  margin: 0;
}
.cf-dashboard__credits-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgb(238.6394422311, 244.7211155378, 249.8605577689);
  border: 1px solid rgb(180.4262948207, 208.1474103586, 231.5737051793);
  border-radius: 8px;
  padding: 10px 18px;
}
.cf-dashboard__credits-label {
  font-size: 0.875rem;
  color: #555555;
}
.cf-dashboard__credits-value {
  font-size: 1.25rem;
  color: #4087c3;
}
.cf-dashboard__section {
  margin-bottom: 40px;
}
.cf-dashboard__section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #352346;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
}
.cf-dashboard__orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.cf-dashboard__orders-table th {
  text-align: left;
  padding: 10px 12px;
  font-weight: 600;
  color: #555555;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #e5e5e5;
}
.cf-dashboard__orders-table td {
  padding: 12px;
  border-bottom: 1px solid #f5f5f5;
  color: #352346;
}
.cf-dashboard__orders-table tr:last-child td {
  border-bottom: none;
}
.cf-dashboard__orders-table a {
  color: #4087c3;
  text-decoration: none;
}
.cf-dashboard__orders-table a:hover {
  text-decoration: underline;
}
.cf-dashboard__status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}
.cf-dashboard__status--processing {
  background: #dbeafe;
  color: #1e40af;
}
.cf-dashboard__status--completed {
  background: #dcfce7;
  color: #166534;
}
.cf-dashboard__status--on-hold {
  background: #fef3c7;
  color: #92400e;
}
.cf-dashboard__status--cancelled, .cf-dashboard__status--failed {
  background: #fee2e2;
  color: #991b1b;
}
.cf-dashboard__status--pending {
  background: #f3f4f6;
  color: #6b7280;
}
.cf-dashboard__view-link {
  font-size: 0.8125rem;
  font-weight: 500;
}
.cf-dashboard__empty {
  color: #999999;
  font-size: 0.9375rem;
}
.cf-dashboard__details {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 12px;
}
.cf-dashboard__detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9375rem;
}
.cf-dashboard__detail-row:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.cf-dashboard__detail-label {
  color: #555555;
  font-weight: 500;
}
.cf-dashboard__detail-value {
  color: #352346;
}
.cf-dashboard__edit-account .woocommerce-EditAccountForm fieldset {
  border: none;
  padding: 0;
  margin: 32px 0 24px;
}
.cf-dashboard__edit-account .woocommerce-EditAccountForm fieldset legend {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.cf-dashboard__edit-account .woocommerce-EditAccountForm .form-row {
  margin-bottom: 16px;
}
.cf-dashboard__edit-account .woocommerce-EditAccountForm input[type=submit] {
  margin-top: 8px;
}
.cf-dashboard__logout {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid #e5e5e5;
}
.cf-dashboard__logout a {
  color: #999999;
  font-size: 0.875rem;
  text-decoration: none;
}
.cf-dashboard__logout a:hover {
  color: #352346;
}
@media (max-width: 768px) {
  .cf-dashboard {
    padding: 24px 0;
  }
  .cf-dashboard__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .cf-dashboard__orders-table thead {
    display: none;
  }
  .cf-dashboard__orders-table tr {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .cf-dashboard__orders-table td {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border: none;
  }
  .cf-dashboard__orders-table td::before {
    content: attr(data-title);
    font-weight: 600;
    color: #555555;
  }
}
.cf-dashboard #account_display_name_description {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #555555;
}

.woocommerce form .show-password-input::before,
.woocommerce-page form .show-password-input::before {
  height: 16px;
  width: 16px;
  opacity: 0.5;
}

.cf-dashboard__notice {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.cf-dashboard__notice--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.cf-dashboard__notice--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.payment_method_square_credit_card label[for=payment_method_square_credit_card] {
  display: grid;
  grid-template-columns: max-content repeat(7, 1fr); /* first = fits content, rest = equal */
  gap: 5px;
  align-items: center;
}
.payment_method_square_credit_card label[for=payment_method_square_credit_card] img {
  margin: 0 !important;
}

#wc-square-credit-card-credit-card-form {
  border: none;
}

.payment_box.payment_method_square_credit_card {
  background: none !important;
  padding: 0 !important;
}
.payment_box.payment_method_square_credit_card:before {
  display: none !important;
}

.sq-card-wrapper .sq-card-message {
  display: none;
}

.woocommerce-privacy-policy-text {
  font-size: 14px;
}

.woocommerce-checkout #payment {
  border-radius: 13px;
}
.woocommerce-checkout #payment div.form-row {
  margin-bottom: 0px;
}
