:root {
  --ffc-black: #050505;
  --ffc-charcoal: #111113;
  --ffc-charcoal-2: #171719;
  --ffc-grey: #a7a7ac;
  --ffc-muted: #6b7280;
  --ffc-light-grey: #f4f4f5;
  --ffc-yellow: #ffc425;
  --ffc-yellow-dark: #d9a900;
  --ffc-white: #ffffff;
}

/* GLOBAL */
body:has(.ffc-home) {
  background:
    radial-gradient(circle at 10% 20%, rgba(255,196,37,.08), transparent 26%),
    radial-gradient(circle at 90% 70%, rgba(0,0,0,.05), transparent 28%),
    #f4f4f5;
}

.ffc-home {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(244,244,245,.94), rgba(244,244,245,.94)),
    linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px),
    linear-gradient(rgba(0,0,0,.035) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.ffc-container {
  width: min(1400px, 94%);
  margin-left: auto;
  margin-right: auto;
}

.ffc-hero-premium,
.ffc-section,
.ffc-download,
.ffc-final-cta,
.ffc-puzzle-divider,
.ffc-trust-strip {
  width: 100%;
  max-width: 100%;
}

/* NAV */
.ffc-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 22px 0;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.ffc-nav-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.ffc-brand img {
  width: min(360px, 52vw);
  height: auto;
  display: block;
  transition: filter .3s ease;
}

.ffc-nav:hover .ffc-brand img {
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255,196,37,.45));
}

.ffc-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
}

.ffc-menu a {
  position: relative;
  color: rgba(255,255,255,.82);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: .25s ease;
}

.ffc-menu a:hover {
  color: var(--ffc-yellow);
  transform: translateY(-2px);
}

.ffc-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--ffc-yellow);
  transition: width .25s ease;
}

.ffc-menu a:hover::after {
  width: 100%;
}

.ffc-nav-cta {
  background: var(--ffc-yellow);
  color: #111 !important;
  padding: 15px 24px;
  border-radius: 999px;
}

/* HERO */
.ffc-hero-premium {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  isolation: isolate;
  padding: 130px 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(255,196,37,.23), transparent 32%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(135deg, #050505 0%, #151517 60%, #000 100%);
  color: var(--ffc-white);
}

.ffc-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 40%, rgba(255,196,37,.18), transparent 28%),
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.08), transparent 22%),
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.22), rgba(0,0,0,.65));
  z-index: 1;
  pointer-events: none;
}

.ffc-puzzle-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    url("https://flatfeeconsulting.com/wp-content/uploads/2022/05/puzzle_large-1.png");
  background-size: 34px 34px, 34px 34px, 980px auto;
  background-repeat: repeat, repeat, no-repeat;
  background-position: center, center, right bottom;
  opacity: .10;
  filter: blur(1.2px) brightness(.75);
  mask-image: linear-gradient(to left, black 66%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 66%, transparent 100%);
  animation: ffc-bg-drift 18s ease-in-out infinite alternate;
}

.ffc-hero-premium-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 90px;
  align-items: center;
}

.ffc-eyebrow,
.ffc-eyebrow-dark {
  display: inline-flex;
  color: var(--ffc-yellow);
  background: rgba(255,196,37,.09);
  border: 1px solid rgba(255,196,37,.3);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  margin-bottom: 18px;
  animation: ffc-soft-pop .6s ease both;
}

.ffc-hero-premium h1 {
  color: var(--ffc-white);
  font-size: clamp(56px, 7vw, 96px);
  line-height: .96;
  letter-spacing: -0.06em;
  max-width: 850px;
  margin: 0;
  text-shadow: 0 18px 45px rgba(0,0,0,.42);
}

.ffc-hero-premium h1 span {
  color: var(--ffc-yellow);
}

.ffc-subtitle-dark {
  color: rgba(255,255,255,.82);
  font-size: 21px;
  line-height: 1.75;
  max-width: 760px;
  margin: 30px 0 14px;
}

.ffc-support-dark {
  color: rgba(255,255,255,.92);
  font-weight: 900;
  max-width: 650px;
  margin-bottom: 34px;
  padding-left: 18px;
  border-left: 4px solid var(--ffc-yellow);
}

/* BUTTONS */
.ffc-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ffc-buttons.center {
  justify-content: center;
}

.ffc-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.ffc-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
	padding: 14px 18px;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
  transition: left .55s ease;
}

.ffc-btn:hover {
  transform: translateY(-4px);
}

.ffc-btn:hover::after {
  left: 130%;
}

.ffc-btn-yellow,
.ffc-btn-primary {
  background: var(--ffc-yellow);
  color: #111 !important;
  box-shadow: 0 18px 35px rgba(255,196,37,.25);
}

.ffc-btn-yellow:hover,
.ffc-btn-primary:hover {
  background: var(--ffc-yellow-dark);
  box-shadow: 0 20px 42px rgba(255,196,37,.3);
}

.ffc-btn-outline,
.ffc-btn-secondary,
.ffc-btn-light {
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
}

.ffc-btn-outline:hover,
.ffc-btn-secondary:hover,
.ffc-btn-light:hover {
  border-color: rgba(255,196,37,.75);
}

/* HERO CARD */
.ffc-visual-card,
.ffc-hero-card {
  position: relative;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:
    0 35px 90px rgba(0,0,0,.48),
    inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter: blur(20px);
  animation: ffc-card-float 6s ease-in-out infinite;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.ffc-visual-card:hover,
.ffc-hero-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,196,37,.45);
}

.ffc-visual-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  background: radial-gradient(circle at top right, rgba(255,196,37,.12), transparent 42%);
  pointer-events: none;
}

.ffc-card-topline {
  height: 7px;
  width: 90px;
  border-radius: 999px;
  background: var(--ffc-yellow);
  box-shadow: 0 0 30px rgba(255,196,37,.7);
  margin-bottom: 24px;
}

.ffc-card-label {
  color: rgba(255,255,255,.64);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
}

.ffc-question-list {
  display: grid;
  gap: 14px;
}

.ffc-question-list div {
  position: relative;
  overflow: hidden;
  color: #fff;
  font-weight: 900;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  transition: .25s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ffc-question-list div::after {
  content: "›";
  color: var(--ffc-yellow);
  font-size: 28px;
  line-height: 1;
  transition: transform .25s ease;
}

.ffc-question-list div:hover {
  transform: translateX(8px);
  background: rgba(255,196,37,.13);
  border-color: rgba(255,196,37,.4);
}

.ffc-question-list div:hover::after {
  transform: translateX(5px);
}

/* DIVIDER */
.ffc-puzzle-divider {
  height: 155px;
  background-color: #000;
  background-image: url("https://flatfeeconsulting.com/wp-content/uploads/2022/05/puzzle_spacer.png");
  background-repeat: repeat-x;
  background-size: auto 155px;
  background-position: center;
}

/* SECTIONS */
.ffc-section {
  position: relative;
	overflow: hidden;
  padding: 95px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(255,196,37,.08), transparent 24%),
    radial-gradient(circle at 92% 82%, rgba(0,0,0,.045), transparent 26%),
    #ffffff;
}

/* STRONGER GOLD DIVIDERS */
.ffc-section::before,
.ffc-section::after {
  content: "";
  position: absolute;
	  animation: ffc-divider-glow 4s ease-in-out infinite;
  left: 50%;
  width: min(1200px, 90%);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,196,37,0.25) 20%,
    rgba(255,196,37,0.85) 50%,
    rgba(255,196,37,0.25) 80%,
    transparent 100%
  );
  box-shadow:
    0 0 12px rgba(255,196,37,0.4),
    0 0 24px rgba(255,196,37,0.2);
}

.ffc-section::before {
  top: 0;
}

.ffc-section::after {
  bottom: 0;
	backdrop-filter: blur(1px);
}
@keyframes ffc-divider-glow {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}


.ffc-light {
  background:
    linear-gradient(rgba(244,244,245,.94), rgba(244,244,245,.94)),
    linear-gradient(90deg, rgba(0,0,0,.045) 1px, transparent 1px),
    linear-gradient(rgba(0,0,0,.045) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
}

.ffc-trust-strip {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  background: var(--ffc-yellow);
  color: #111;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 16px 45px rgba(255,196,37,.18);
}

.ffc-trust-strip::after {
  content: "";
  position: absolute;
  top: 0;
  left: -45%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.45),
    transparent
  );
  animation: ffc-strip-sweep 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ffc-strip-sweep {
  0% {
    left: -45%;
  }
  55%, 100% {
    left: 110%;
  }
}

.ffc-section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.ffc-section h2,
.ffc-download h2,
.ffc-final-cta h2,
.ffc-split h2 {
  color: var(--ffc-black);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0;
}

.ffc-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.ffc-split p,
.ffc-card p,
.ffc-process p,
.ffc-download p,
.ffc-final-cta p {
  color: var(--ffc-muted);
  line-height: 1.7;
  font-size: 17px;
}

/* CARDS */
.ffc-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ffc-card,
.ffc-process div,
.ffc-feature-list div,
.ffc-download-box {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(0,0,0,.06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.ffc-card {
  padding: 34px;
}

.ffc-card:hover,
.ffc-process div:hover,
.ffc-feature-list div:hover,
.ffc-download-box:hover {
  transform: translateY(-8px);
  border-color: rgba(255,196,37,.55);
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
}

.ffc-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ffc-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.1);
  transition: transform .25s ease, filter .25s ease;
}

.ffc-card:hover .ffc-icon img {
  transform: scale(1.15) rotate(-3deg);
  filter: none;
}

.ffc-card h3,
.ffc-process h3 {
  color: var(--ffc-black);
  font-size: 23px;
  margin-bottom: 10px;
}

/* FEATURES */
.ffc-feature-list {
  display: grid;
  gap: 14px;
}

.ffc-feature-list div {
  padding: 20px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.ffc-feature-list strong {
  color: var(--ffc-yellow-dark);
  font-size: 20px;
}

.ffc-feature-list span {
  color: var(--ffc-black);
  font-weight: 900;
}

/* PROCESS */
.ffc-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ffc-process div {
  padding: 30px;
}

.ffc-process span {
  width: 42px;
  height: 42px;
  background: var(--ffc-black);
  color: var(--ffc-yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 18px;
}

/* DOWNLOAD */
.ffc-download {
  padding: 90px 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(255,196,37,.22), transparent 30%),
    linear-gradient(135deg, #050505, #171719);
}

.ffc-download-box {
  background: #fff;
  padding: 46px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.ffc-download-box p {
  max-width: 680px;
}

/* FINAL CTA */
.ffc-final-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
  background:
    linear-gradient(rgba(0,0,0,.88), rgba(0,0,0,.9)),
    url("https://flatfeeconsulting.com/wp-content/uploads/2026/04/puzzle_spacer_bw.png"),
    linear-gradient(135deg, #050505, #171719);
  background-size: cover, auto 210px, cover;
  background-position: center, center bottom, center;
}

.ffc-final-cta h2,
.ffc-final-cta p {
  color: #fff;
}

.ffc-final-cta p {
  font-size: 18px;
  margin-bottom: 28px;
}

.ffc-final-cta::before,
.ffc-download::before {
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,196,37,0.9),
    transparent
  );
  box-shadow:
    0 0 20px rgba(255,196,37,0.6),
    0 0 40px rgba(255,196,37,0.3);
}

/* ANIMATIONS */
.ffc-home section {
  animation: ffc-section-fade .7s ease both;
}

.ffc-reveal {
  animation: ffc-rise .85s ease both;
}

.delay-1 {
  animation-delay: .18s;
}

@keyframes ffc-rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ffc-section-fade {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ffc-soft-pop {
  from { opacity: 0; transform: translateY(10px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ffc-card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes ffc-bg-drift {
  from { background-position: center, center, right bottom; }
  to { background-position: center, center, 95% 86%; }
}

/* MOBILE */
@media (max-width: 900px) {
  .ffc-container {
    width: min(100%, 92%);
  }

  .ffc-nav-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  .ffc-menu {
    width: 100%;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 4px;
  }

  .ffc-hero-premium {
    padding: 85px 0;
    min-height: auto;
  }

  .ffc-hero-premium-grid,
  .ffc-split,
  .ffc-card-grid,
  .ffc-process {
    grid-template-columns: 1fr;
  }

  .ffc-puzzle-bg {
    background-size: 34px 34px, 34px 34px, 650px auto;
    opacity: .08;
  }

  .ffc-download-box {
    flex-direction: column;
    align-items: flex-start;
  }
	
	  /* ALL button wrappers stack clean */
  .ffc-buttons {
    flex-direction: column;
    align-items: stretch !important;
    gap: 12px;
  }
	
	

  .ffc-buttons.center {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ffc-home *,
  .ffc-home *::before,
  .ffc-home *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Remove WordPress/theme gaps around custom sections */
body:has(.ffc-home) .wp-block-post-content,
body:has(.ffc-home) .entry-content {
  gap: 0 !important;
}

/* Remove default margins between your custom sections */
.ffc-home > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Header → Hero gap */
.ffc-nav + .ffc-home,
.ffc-nav + .ffc-hero-premium,
.ffc-home > .ffc-hero-premium:first-child {
  margin-top: 0 !important;
}

/* CTA → Footer gap */
.ffc-final-cta {
  margin-bottom: 0 !important;
}

/* Download → Process / surrounding gaps */
.ffc-download,
.ffc-section,
.ffc-final-cta {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Make dark sections visually connect better */
.ffc-download {
  padding-top: 90px;
  padding-bottom: 90px;
}

.ffc-final-cta {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Optional: remove white gap between final CTA and footer */
.ffc-final-cta + .ffc-footer,
.ffc-footer {
  margin-top: 0 !important;
}


/* =========================
   GLOBAL RESPONSIVE PATCH
========================= */

@media (max-width: 1100px) {
  .ffc-container {
    width: min(100%, 92%);
  }

  .ffc-nav-inner {
    gap: 22px;
  }

  .ffc-menu {
    gap: 18px;
  }

  .ffc-menu a {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  /* Global spacing */
  .ffc-hero-premium,
  .ffc-cleanup-hero,
  .ffc-forensics-hero,
  .ffc-about-hero,
  .ffc-contact-hero,
  .ffc-quote-hero {
    padding: 72px 0 !important;
    min-height: auto !important;
  }

  .ffc-section,
  .ffc-download,
  .ffc-final-cta,
  .ffc-data-problem,
  .ffc-data-timeline,
  .ffc-data-dark,
  .ffc-data-results,
  .ffc-forensics-questions,
  .ffc-forensics-services,
  .ffc-litigation-roi,
  .ffc-why-forensics,
  .ffc-expert-network,
  .ffc-about-story,
  .ffc-flat-fee-section,
  .ffc-about-dark,
  .ffc-about-data,
  .ffc-contact-options,
  .ffc-quote-form-section {
    padding: 64px 0 !important;
  }

  /* Stack all major grids */
  .ffc-hero-premium-grid,
  .ffc-split,
  .ffc-card-grid,
  .ffc-process,
  .ffc-cleanup-hero-grid,
  .ffc-data-problem-grid,
  .ffc-timeline,
  .ffc-data-dark-grid,
  .ffc-results-grid,
  .ffc-forensics-hero-grid,
  .ffc-question-grid,
  .ffc-forensics-service-grid,
  .ffc-litigation-grid,
  .ffc-why-grid,
  .ffc-expert-grid,
  .ffc-about-hero-grid,
  .ffc-about-story-grid,
  .ffc-flat-fee-grid,
  .ffc-about-dark-grid,
  .ffc-about-data-grid,
  .ffc-contact-hero-grid,
  .ffc-contact-options-grid,
  .ffc-quote-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Headings */
  .ffc-hero-premium h1,
  .ffc-cleanup-hero h1,
  .ffc-forensics-hero h1,
  .ffc-about-hero h1,
  .ffc-contact-hero h1,
  .ffc-quote-hero h1 {
    font-size: clamp(42px, 12vw, 64px) !important;
    letter-spacing: -0.045em !important;
  }

  .ffc-section h2,
  .ffc-data-problem h2,
  .ffc-data-timeline h2,
  .ffc-data-dark h2,
  .ffc-data-results h2,
  .ffc-forensics-questions h2,
  .ffc-forensics-services h2,
  .ffc-litigation-roi h2,
  .ffc-why-forensics h2,
  .ffc-expert-network h2,
  .ffc-about-story h2,
  .ffc-about-dark h2,
  .ffc-about-data h2 {
    font-size: clamp(32px, 10vw, 48px) !important;
  }

  /* Paragraphs */
  .ffc-subtitle-dark,
  .ffc-cleanup-hero p,
  .ffc-forensics-hero p,
  .ffc-about-hero p,
  .ffc-contact-hero p,
  .ffc-quote-hero p {
    font-size: 18px !important;
    line-height: 1.65 !important;
  }

  /* Buttons */
  .ffc-buttons {
    flex-direction: column;
    align-items: stretch !important;
    gap: 12px;
  }

  .ffc-btn {
    width: 100%;
    text-align: center;
  }

  .ffc-buttons,
  .ffc-buttons.center {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 12px !important;
  }

  .ffc-buttons .ffc-btn,
  .ffc-download-box .ffc-btn,
  .ffc-final-cta .ffc-btn,
  .ffc-footer-cta .ffc-btn,
  .ffc-nav-cta {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 15px 18px !important;
    white-space: normal !important;
  }

  .ffc-download-box,
  .ffc-final-cta .ffc-container,
  .ffc-footer-cta {
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Cards */
  .ffc-card,
  .ffc-process div,
  .ffc-feature-list div,
  .ffc-download-box,
  .ffc-report-card,
  .ffc-case-card,
  .ffc-founder-card,
  .ffc-contact-card,
  .ffc-quote-side-card {
    padding: 26px !important;
  }


  

  /* Forms / iframe */
  .ffc-quote-form-card {
    padding: 10px !important;
    border-radius: 22px;
  }

  .ffc-quote-form-card iframe {
    min-height: 1050px;
    border-radius: 16px;
  }

  /* Footer */
  .ffc-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .ffc-footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .ffc-container {
    width: min(100%, 90%);
  }

  .ffc-hero-premium,
  .ffc-cleanup-hero,
  .ffc-forensics-hero,
  .ffc-about-hero,
  .ffc-contact-hero,
  .ffc-quote-hero {
    padding: 56px 0 !important;
  }

  .ffc-section,
  .ffc-download,
  .ffc-final-cta,
  .ffc-data-problem,
  .ffc-data-timeline,
  .ffc-data-dark,
  .ffc-data-results,
  .ffc-forensics-questions,
  .ffc-forensics-services,
  .ffc-litigation-roi,
  .ffc-why-forensics,
  .ffc-expert-network,
  .ffc-about-story,
  .ffc-flat-fee-section,
  .ffc-about-dark,
  .ffc-about-data,
  .ffc-contact-options,
  .ffc-quote-form-section {
    padding: 52px 0 !important;
  }

  .ffc-hero-premium h1,
  .ffc-cleanup-hero h1,
  .ffc-forensics-hero h1,
  .ffc-about-hero h1,
  .ffc-contact-hero h1,
  .ffc-quote-hero h1 {
    font-size: clamp(38px, 13vw, 54px) !important;
  }

  .ffc-card,
  .ffc-process div,
  .ffc-feature-list div,
  .ffc-download-box,
  .ffc-report-card,
  .ffc-case-card,
  .ffc-founder-card,
  .ffc-contact-card,
  .ffc-quote-side-card {
    padding: 22px !important;
    border-radius: 22px !important;
  }

  .ffc-puzzle-divider {
    height: 90px;
    background-size: auto 90px;
  }

  .ffc-roi-card div,
  .ffc-report-row,
  .ffc-case-metric {
    flex-direction: column;
  }
}

/* REMOVE THEME WRAPPER PADDING + CONSTRAINT */
.wp-site-blocks,
.wp-block-group,
main,
.entry-content,
.wp-block-post-content,
.is-layout-constrained,
.is-layout-flow {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Fix Gutenberg internal constraint system */
:root {
  --wp--style--global--content-size: 100%;
  --wp--style--global--wide-size: 100%;
}

/* Keep YOUR content aligned properly */
.ffc-container {
  width: min(1400px, 94%) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}